mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-01-29 21:51:31 +00:00
10 lines
159 B
Python
10 lines
159 B
Python
from django.urls import path
|
|
|
|
from .. import ws
|
|
|
|
app_name = 'ops'
|
|
|
|
urlpatterns = [
|
|
path('ws/ops/tasks/log/', ws.CeleryLogWebsocket, name='task-log-ws'),
|
|
]
|