18 lines
425 B
Python
18 lines
425 B
Python
from channels.auth import AuthMiddlewareStack
|
|
from channels.routing import ProtocolTypeRouter, URLRouter
|
|
from django.urls import path
|
|
|
|
from kfet.routing import KFRouter
|
|
|
|
application = ProtocolTypeRouter(
|
|
{
|
|
# WebSocket chat handler
|
|
"websocket": AuthMiddlewareStack(
|
|
URLRouter(
|
|
[
|
|
path("ws/k-fet", KFRouter),
|
|
]
|
|
)
|
|
),
|
|
}
|
|
)
|