9 lines
138 B
Python
9 lines
138 B
Python
from django.urls import path
|
|
|
|
from ..views.admin import CommentAPI
|
|
|
|
|
|
urlpatterns = [
|
|
path("comment", CommentAPI.as_view()),
|
|
]
|