出题人

This commit is contained in:
2025-10-03 02:03:19 +08:00
parent 893b2aba79
commit ce2a4629da
4 changed files with 41 additions and 8 deletions

View File

@@ -6,12 +6,14 @@ from ..views.oj import (
ProblemAPI,
ContestProblemAPI,
PickOneAPI,
ProblemAuthorAPI,
)
urlpatterns = [
path("problem/tags", ProblemTagAPI.as_view()),
path("problem", ProblemAPI.as_view()),
path("problem/beat_count", ProblemSolvedPeopleCount.as_view()),
path("problem/author", ProblemAuthorAPI.as_view()),
path("pickone", PickOneAPI.as_view()),
path("contest/problem", ContestProblemAPI.as_view()),
]