kpsul/kfet/routing.py

9 lines
202 B
Python
Raw Permalink Normal View History

from channels.routing import include, route_class
2016-09-01 00:45:44 +02:00
from . import consumers
routing = [
route_class(consumers.KPsul, path=r"^/k-psul/$"),
include("kfet.open.routing.routing", path=r"^/open"),
]