spug_expand/dashboard/urls.py

9 lines
200 B
Python
Raw Normal View History

2020-10-16 03:32:42 +00:00
from django.urls import path
from dashboard import views
urlpatterns = [
2020-10-21 06:50:10 +00:00
path('monotoring/',views.monotoring),
path('alarm/',views.alarm),
2020-11-03 02:10:34 +00:00
path('task/histories/',views.task_histories),
2020-10-16 03:32:42 +00:00
]