forked from DGNum/gestioCOF
10 lines
194 B
Python
10 lines
194 B
Python
from channels.routing import URLRouter
|
|
from django.urls import path
|
|
|
|
from .consumers import OpenKfetConsumer
|
|
|
|
OpenRouter = URLRouter(
|
|
[
|
|
path("", OpenKfetConsumer.as_asgi()),
|
|
]
|
|
)
|