mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-27 20:42:52 +00:00
12 lines
271 B
Python
12 lines
271 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = 'chat'
|
|
|
|
urlpatterns = [
|
|
path('chat/embed', views.ChatEmbedView.as_view()),
|
|
path('application/authentication', views.Authentication.as_view()),
|
|
path('profile', views.ApplicationProfile.as_view())
|
|
]
|