mirror of
https://github.com/evgen-app/chess_rpg_backend.git
synced 2025-02-16 19:40:38 +03:00
19 lines
466 B
Python
19 lines
466 B
Python
|
import os
|
||
|
|
||
|
from django.core.asgi import get_asgi_application
|
||
|
from channels.routing import ProtocolTypeRouter, URLRouter
|
||
|
|
||
|
import room.routing
|
||
|
from room.middleware import HeaderAuthMiddleware
|
||
|
|
||
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "chess_backend.settings")
|
||
|
|
||
|
application = ProtocolTypeRouter(
|
||
|
{
|
||
|
"http": get_asgi_application(),
|
||
|
"websocket": HeaderAuthMiddleware(
|
||
|
URLRouter(room.routing.websocket_urlpatterns)
|
||
|
),
|
||
|
}
|
||
|
)
|