kpsul/kfet/routing.py
2018-01-06 16:10:13 +01:00

10 lines
203 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'),
]