Quiz
1from django.urls import path2from games import consumers3
4websocket_urlpatterns = [5path('ws/user/<int:user_id>', consumers.GamesConsumer.as_asgi()),6path('ws/queue/<int:queue_id>', consumers.GamesConsumer.as_asgi()),7path('ws/game/<int:game_id>', consumers.GamesConsumer.as_asgi()),8#path('ws/chat/', consumers.ChatConsumers.as_asgi()9]
10