mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-06-19 19:52:17 +00:00
10 lines
186 B
Python
10 lines
186 B
Python
from django.urls import path
|
|
|
|
from .. import ws
|
|
|
|
app_name = 'notifications'
|
|
|
|
urlpatterns = [
|
|
path('ws/notifications/site-msg/', ws.SiteMsgWebsocket.as_asgi(), name='site-msg-ws'),
|
|
]
|