MaxKB/apps/chat/urls.py
shaohuzhang1 43654bddaf
Some checks failed
sync2gitee / repo-sync (push) Has been cancelled
feat: application operate api (#3176)
2025-05-30 20:02:39 +08:00

10 lines
143 B
Python

from django.urls import path
from . import views
app_name = 'chat'
urlpatterns = [
path('chat/embed', views.ChatEmbedView.as_view()),
]