mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 06:19:24 +08:00
9 lines
262 B
Python
9 lines
262 B
Python
|
from django.urls import re_path
|
||
|
from channels.routing import URLRouter
|
||
|
import student_status.routing
|
||
|
import student_status.consumers
|
||
|
websocket_urlpatterns = [
|
||
|
re_path(r'student_status/',
|
||
|
URLRouter(student_status.routing.websocket_urlpatterns))
|
||
|
]
|