##// END OF EJS Templates
Test Version
Test Version

File last commit:

r22:3d86891def25
r22:3d86891def25
Show More
routing.py
10 lines | 290 B | text/x-python | PythonLexer
from channels.auth import AuthMiddlewareStack
from channels.routing import ProtocolTypeRouter, URLRouter
import plotter.routing
application = ProtocolTypeRouter({
'websocket': AuthMiddlewareStack(
URLRouter(
plotter.routing.websocket_urlpatterns
)
),
})