mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-11-04 14:49:58 +08:00
8 lines
186 B
Python
8 lines
186 B
Python
from django.conf.urls import url
|
|
|
|
from ..views.admin import TestCaseUploadAPI
|
|
|
|
urlpatterns = [
|
|
url(r"^test_case/upload$", TestCaseUploadAPI.as_view(), name="test_case_upload_api")
|
|
]
|