add message and comment

This commit is contained in:
2024-06-30 07:59:41 +08:00
parent 148761c8a2
commit 88a322b248
28 changed files with 431 additions and 144 deletions
View File
+8
View File
@@ -0,0 +1,8 @@
from django.urls import re_path as url
from ..views.oj import CommentAPI
urlpatterns = [
url(r"^comment/?$", CommentAPI.as_view(), name="comment_api"),
]