##// END OF EJS Templates
Fix utc time handling
Fix utc time handling

File last commit:

r22:3d86891def25
r44:74ffee4b5884
Show More
routing.py
8 lines | 302 B | text/x-python | PythonLexer
from django.conf.urls import url
from . import consumers
websocket_urlpatterns = [
url(r'^ws/main/$', consumers.MainConsumer),
url(r'^ws/realtime/(?P<code>[^/]+)/(?P<plot>[^/]+)/$', consumers.PlotConsumer),
url(r'^ws/database/(?P<code>[^/]+)/(?P<plot>[^/]+)/$', consumers.PlotConsumer),
]