mirror of https://github.com/jumpserver/jumpserver
10 lines
174 B
Python
10 lines
174 B
Python
![]() |
from django.urls import path
|
||
|
|
||
|
from .. import ws
|
||
|
|
||
|
app_name = 'ops'
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('ws/ops/tasks/<uuid:task_id>/log/', ws.CeleryLogWebsocket, name='task-log-ws'),
|
||
|
]
|