diff --git a/comments/urls.py b/comments/urls.py deleted file mode 100644 index 7df3fab..0000000 --- a/comments/urls.py +++ /dev/null @@ -1,11 +0,0 @@ -from django.urls import path - -from . import views - -app_name = "comments" -urlpatterns = [ - path( - 'article//postcomment', - views.CommentPostView.as_view(), - name='postcomment'), -]