mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-06-19 19:52:17 +00:00
10 lines
167 B
Python
10 lines
167 B
Python
from django.urls import path
|
|
|
|
from .. import ws
|
|
|
|
app_name = 'ops'
|
|
|
|
urlpatterns = [
|
|
path('ws/ops/tasks/log/', ws.TaskLogWebsocket.as_asgi(), name='task-log-ws'),
|
|
]
|