mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 14:06:47 +00:00
14 lines
217 B
Python
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'),
|
|
]
|