Files
OnlineJudge/comment/urls/oj.py
2024-07-01 12:17:43 +08:00

10 lines
222 B
Python

from django.urls import path
from ..views.oj import CommentAPI, CommentStatisticsAPI
urlpatterns = [
path("comment", CommentAPI.as_view()),
path("comment/statistics", CommentStatisticsAPI.as_view()),
]