mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-06 15:16:32 +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'),
|
|
]
|