spug/spug_api/apps/config/urls.py

11 lines
249 B
Python
Raw Normal View History

2019-12-06 10:35:38 +00:00
from django.urls import path
from .views import *
urlpatterns = [
2019-12-07 14:11:25 +00:00
path('', ConfigView.as_view()),
2019-12-06 10:35:38 +00:00
path('environment/', EnvironmentView.as_view()),
2019-12-06 10:45:52 +00:00
path('service/', ServiceView.as_view()),
2019-12-07 15:29:42 +00:00
path('history/', HistoryView.as_view()),
2019-12-06 10:35:38 +00:00
]