10 lines
222 B
Python
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()),
|
|
]
|