forked from DGNum/gestioCOF
9 lines
261 B
Python
9 lines
261 B
Python
|
from channels.routing import route, route_class
|
||
|
from kfet import consumers
|
||
|
|
||
|
channel_routing = [
|
||
|
route_class(consumers.KPsul, path=r"^/k-fet/k-psul/$"),
|
||
|
#route("websocket.connect", ws_kpsul_history_connect),
|
||
|
#route('websocket.receive', ws_message)
|
||
|
]
|