mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-22 08:19:04 +00:00
10 lines
173 B
Python
10 lines
173 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'),
|
|
]
|