8 lines
202 B
Python
8 lines
202 B
Python
from channels.routing import include, route_class
|
|
|
|
from . import consumers
|
|
|
|
routing = [
|
|
route_class(consumers.KPsul, path=r"^/k-psul/$"),
|
|
include("kfet.open.routing.routing", path=r"^/open"),
|
|
]
|