kpsul/kfet/routing.py

12 lines
228 B
Python
Raw Permalink Normal View History

2016-09-01 00:45:44 +02:00
# -*- coding: utf-8 -*-
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'),
]