Files
OnlineJudge/comment/urls/oj.py
2026-04-23 13:57:56 -06:00

9 lines
220 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()),
]