mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-29 07:15:36 +03:00
8 lines
169 B
Python
8 lines
169 B
Python
from django.urls import re_path
|
|
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r"ws/chat/(?P<order_id>\w+)/$", consumers.ChatRoomConsumer.as_asgi()),
|
|
]
|