gestioCOF/kfet/open/routing.py
2024-07-12 14:54:14 +02:00

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()),
]
)