mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-27 18:41:15 +00:00
9 lines
175 B
Python
9 lines
175 B
Python
from django.urls import path
|
|
|
|
from .. import ws
|
|
|
|
app_name = 'notifications'
|
|
|
|
urlpatterns = [
|
|
path('ws/notifications/site-msg/', ws.SiteMsgWebsocket, name='site-msg-ws'),
|
|
] |