mirror of
https://github.com/django/daphne.git
synced 2025-11-12 05:25:19 +03:00
8 lines
158 B
Python
8 lines
158 B
Python
from django.conf.urls import include, url
|
|
from chtest import consumers
|
|
urlpatterns = []
|
|
|
|
channel_routing = {
|
|
"websocket.message": consumers.ws_message,
|
|
}
|