StudE-Backend/stude/student_status/routing.py

8 lines
165 B
Python
Raw Permalink Normal View History

# routing.py
from django.urls import re_path
from . import consumers
websocket_urlpatterns = [
re_path(r"active", consumers.StudentStatusConsumer.as_asgi()),
]