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