添加f评论API

This commit is contained in:
2024-07-02 21:12:06 +08:00
parent 77cf8db4c4
commit ee10972d6e
7 changed files with 65 additions and 3 deletions

8
comment/urls/admin.py Normal file
View File

@@ -0,0 +1,8 @@
from django.urls import path
from ..views.admin import CommentAPI
urlpatterns = [
path("comment", CommentAPI.as_view()),
]