add: matchmaking

This commit is contained in:
2023-12-12 12:06:13 +01:00
parent ad6cfdf08a
commit ae20be25fb
14 changed files with 152 additions and 3 deletions

6
matchmaking/routing.py Normal file
View File

@ -0,0 +1,6 @@
from django.urls import re_path
from . import consumers
websocket_urlpatterns = [
re_path(r'ws/matchmaking/', consumers.MatchMaking.as_asgi())
]