12 lines
213 B
Python
12 lines
213 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
WebSocket URL 路由。
|
|
"""
|
|
from django.urls import re_path
|
|
|
|
from server.ws.consumers import WorkerConsumer
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r"^ws$", WorkerConsumer.as_asgi()),
|
|
]
|