from django.urls import re_path from .consumers.game import GameConsumer from .consumers.lobby import LobbyConsumer websocket_urlpatterns = [ re_path(r'ws/game/(?P\w+)/$', GameConsumer.as_asgi()), re_path(r'ws/play/lobby/(?P\w+)/$', LobbyConsumer.as_asgi()), ]