mirror of
https://github.com/evgen-app/chess_rpg_backend.git
synced 2024-11-14 21:57:11 +03:00
9 lines
206 B
Python
9 lines
206 B
Python
from django.urls import path
|
|
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
path("room/", consumers.QueueConsumer.as_asgi()),
|
|
path("room/<str:room_name>/", consumers.RoomConsumer.as_asgi()),
|
|
]
|