feat(reaction): 用户端表情接口

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-06 01:40:11 -06:00
parent b80145f2b6
commit 203a9a48d0
3 changed files with 77 additions and 0 deletions

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

@@ -0,0 +1,7 @@
from django.urls import path
from ..views.oj import ReactionAPI
urlpatterns = [
path("reaction", ReactionAPI.as_view()),
]