42_ft_transcendence/django/matchmaking/routing.py
2024-05-14 08:50:37 +02:00

7 lines
183 B
Python

from django.urls import re_path
from . import consumers
websocket_urlpatterns = [
re_path(r'ws/matchmaking/(?P<game_type>\w+)/(?P<mode>\d+)$', consumers.MatchMaking.as_asgi())
]