9 lines
169 B
Python
9 lines
169 B
Python
from django.urls import re_path as url
|
|
|
|
from ..views.oj import CommentAPI
|
|
|
|
|
|
urlpatterns = [
|
|
url(r"^comment/?$", CommentAPI.as_view(), name="comment_api"),
|
|
]
|