API-Manager/apimanager/systemviews/urls.py
2024-10-31 12:56:29 +01:00

14 lines
217 B
Python

# -*- coding: utf-8 -*-
"""
URLs for System View app
"""
from django.urls import re_path
from .views import SystemView
urlpatterns = [
re_path(r'^$',
SystemView.as_view(),
name='system_view'),
]