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
message/urls/__init__.py Normal file
View File

7
message/urls/oj.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import re_path as url
from ..views.oj import MessageAPI
urlpatterns = [
url(r"^message/?$", MessageAPI.as_view(), name="message_api"),
]