kpsul/kfet/open/routing.py
2022-10-03 10:55:33 +02:00

11 lines
194 B
Python

from channels.routing import URLRouter
from django.urls import path
from .consumers import OpenKfetConsumer
OpenRouter = URLRouter(
[
path("", OpenKfetConsumer.as_asgi()),
]
)