mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-02-01 12:13:12 +08:00
11 lines
221 B
Python
11 lines
221 B
Python
"""
|
|
Worker WebSocket 路由配置
|
|
"""
|
|
|
|
from django.urls import path
|
|
from .consumers import WorkerDeployConsumer
|
|
|
|
websocket_urlpatterns = [
|
|
path('ws/workers/<int:worker_id>/deploy/', WorkerDeployConsumer.as_asgi()),
|
|
]
|