forked from DGNum/gestioCOF
9 lines
126 B
Python
9 lines
126 B
Python
|
from channels.routing import route_class
|
||
|
|
||
|
from . import consumers
|
||
|
|
||
|
|
||
|
routing = [
|
||
|
route_class(consumers.OpenKfetConsumer)
|
||
|
]
|