kpsul/kfet/routing.py
2018-10-06 13:15:33 +02:00

9 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"),
]