11 lines
324 B
Python
11 lines
324 B
Python
from django.urls import path
|
|
|
|
from ..views.oj import ProblemTagAPI, ProblemAPI, ContestProblemAPI, PickOneAPI
|
|
|
|
urlpatterns = [
|
|
path("problem/tags", ProblemTagAPI.as_view()),
|
|
path("problem", ProblemAPI.as_view()),
|
|
path("pickone", PickOneAPI.as_view()),
|
|
path("contest/problem", ContestProblemAPI.as_view()),
|
|
]
|