add message and comment

This commit is contained in:
2024-06-29 21:33:22 +08:00
parent 148761c8a2
commit 88a322b248
28 changed files with 431 additions and 144 deletions

0
comment/urls/__init__.py Normal file
View File

8
comment/urls/oj.py Normal file
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"),
]