mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-29 03:44:41 +00:00
11 lines
239 B
Python
11 lines
239 B
Python
from django.urls import path
|
|
|
|
from .. import ws
|
|
|
|
app_name = 'common'
|
|
|
|
urlpatterns = [
|
|
path('ws/setting/tools/', ws.ToolsWebsocket.as_asgi(), name='setting-tools-ws'),
|
|
path('ws/ldap/', ws.LdapWebsocket.as_asgi(), name='ldap-ws'),
|
|
]
|