1from django.urls import re_path
 2from chart_rest import views
 3
 4urlpatterns = [
 5    re_path(r'timeseries',
 6        views.timeseries,
 7        name='timeseries'),
 8    re_path(r'info',
 9        views.info,
10        name='info'),
11    re_path(r'tables',
12        views.tables,
13        name='tables'),
14    re_path(r'parameter',
15        views.parameter,
16        name='parameter'),
17    re_path(r'tree',
18        views.tree,
19        name='tree'),
20    re_path(r'search',
21        views.search,
22        name='search'),
23    re_path(r'geolocation',
24        views.geolocation,
25        name='geolocation')
26]