8 lines
168 B
Python
8 lines
168 B
Python
from django.urls import path
|
|
|
|
from apps.comments.views import CommentCreateView
|
|
|
|
urlpatterns = [
|
|
path("post/", CommentCreateView.as_view(), name="comment_post"),
|
|
]
|