mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-11-04 14:49:58 +08:00
9 lines
259 B
Python
9 lines
259 B
Python
from django.conf.urls import url
|
|
|
|
from ..views.oj import ProblemTagAPI, ProblemAPI
|
|
|
|
urlpatterns = [
|
|
url(r"^problem/tags/?$", ProblemTagAPI.as_view(), name="problem_tag_list_api"),
|
|
url(r"^problems/?$", ProblemAPI.as_view(), name="problem_list_api"),
|
|
]
|