mirror of
https://github.com/evgen-app/chess_rpg_backend.git
synced 2024-11-11 04:07:54 +03:00
9 lines
205 B
Python
9 lines
205 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()),
|
|
]
|