File size: 275 Bytes
947c08e
 
 
 
 
 
 
1
2
3
4
5
6
7
from django.urls import re_path, path
from backend.socket import queue

websocket_urlpatterns = [
    path(r'ws/queue/request_chapter/<str:socket_id>', queue.RequestChapter.as_asgi()),
    # re_path(r'ws/monthly-join-library/', statistic.MonthlyJoinLibrarySocket.as_asgi())
]