API-Manager/apimanager/systemviews/urls.py

14 lines
217 B
Python
Raw Permalink Normal View History

2022-10-18 11:28:06 +00:00
# -*- coding: utf-8 -*-
"""
URLs for System View app
"""
2024-10-31 11:56:29 +00:00
from django.urls import re_path
2022-10-18 11:28:06 +00:00
from .views import SystemView
urlpatterns = [
2024-10-31 11:56:29 +00:00
re_path(r'^$',
2022-10-18 11:28:06 +00:00
SystemView.as_view(),
name='system_view'),
]