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