ft_transcendence/tournament/routing.py

7 lines
160 B
Python
Raw Normal View History

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