daphne/testproject/testproject/urls.py
2015-11-07 03:13:15 -08:00

8 lines
158 B
Python

from django.conf.urls import include, url
from chtest import consumers
urlpatterns = []
channel_routing = {
"websocket.message": consumers.ws_message,
}