ft_transcendence/tournament/routing.py

7 lines
168 B
Python
Raw Permalink Normal View History

from django.urls import re_path
from . import consumers
websocket_urlpatterns = [
2023-12-28 09:20:25 -05:00
re_path(r'ws/games/(?P<game_id>\d+)$', consumers.TournamentWebConsumer.as_asgi())
]