5 lines
133 B
Python
5 lines
133 B
Python
|
from channels.routing import ProtocolTypeRouter
|
||
|
|
||
|
application = ProtocolTypeRouter({
|
||
|
# (http->django views is added by default)
|
||
|
})
|