spug/spug_api/apps/config/urls.py

13 lines
323 B
Python

from django.urls import path
from .views import *
urlpatterns = [
path('', ConfigView.as_view()),
path('parse/json/', parse_json),
path('parse/text/', parse_text),
path('environment/', EnvironmentView.as_view()),
path('service/', ServiceView.as_view()),
path('history/', HistoryView.as_view()),
]