mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-28 19:53:35 -05:00
8 lines
241 B
Python
8 lines
241 B
Python
from channels.routing import route
|
|
|
|
|
|
channel_routing = [
|
|
route("websocket.disconnect", "awx.main.consumers.ws_disconnect", path=r'^/websocket/$'),
|
|
route("websocket.receive", "awx.main.consumers.ws_receive", path=r'^/websocket/$'),
|
|
]
|