mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2025-01-19 07:03:01 +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()),
|
|
]
|