forked from DGNum/gestioCOF
13 lines
386 B
Python
13 lines
386 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import (absolute_import, division,
|
|
print_function, unicode_literals)
|
|
from builtins import *
|
|
|
|
from channels.routing import route, route_class
|
|
from kfet import consumers
|
|
|
|
channel_routing = [
|
|
route_class(consumers.KPsul, path=r"^/ws/k-fet/k-psul/$"),
|
|
route_class(consumers.KfetOpen, path=r"^/ws/k-fet/is_open/$"),
|
|
]
|