mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 06:19:24 +08:00
7 lines
165 B
Python
7 lines
165 B
Python
# routing.py
|
|
from django.urls import re_path
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r"active", consumers.StudentStatusConsumer.as_asgi()),
|
|
]
|