击败多少用户
This commit is contained in:
@@ -1,10 +1,17 @@
|
||||
from django.urls import path
|
||||
|
||||
from ..views.oj import ProblemTagAPI, ProblemAPI, ContestProblemAPI, PickOneAPI
|
||||
from ..views.oj import (
|
||||
ProblemSolvedPeopleCount,
|
||||
ProblemTagAPI,
|
||||
ProblemAPI,
|
||||
ContestProblemAPI,
|
||||
PickOneAPI,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
path("problem/tags", ProblemTagAPI.as_view()),
|
||||
path("problem", ProblemAPI.as_view()),
|
||||
path("problem/beat_count", ProblemSolvedPeopleCount.as_view()),
|
||||
path("pickone", PickOneAPI.as_view()),
|
||||
path("contest/problem", ContestProblemAPI.as_view()),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user