spug/spug_api/apps/config/urls.py

13 lines
323 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-08 05:23:23 +00:00
path('parse/json/', parse_json),
path('parse/text/', parse_text),
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
]