NDOJ/dmoj/routing.py

12 lines
339 B
Python
Raw Normal View History

2020-01-27 14:37:52 -06:00
from channels.auth import AuthMiddlewareStack
from channels.routing import ProtocolTypeRouter, URLRouter
2020-03-19 16:51:56 -06:00
import chat_box.routing
2020-01-27 14:37:52 -06:00
application = ProtocolTypeRouter({
# (http->django views is added by default)
'websocket': AuthMiddlewareStack(
URLRouter(
2020-03-19 16:51:56 -06:00
chat_box.routing.websocket_urlpatterns
)
2020-01-27 14:37:52 -06:00
),
2020-03-19 16:51:56 -06:00
})