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

15 lines
212 B
Python

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