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

14 lines
253 B
Python

from channels.routing import URLRouter
from django.urls import path
from kfet.open.routing import OpenRouter
from .consumers import KPsul
KFRouter = URLRouter(
[
path("k-psul/", KPsul.as_asgi()),
path("open", OpenRouter),
]
)