API-Manager/apimanager/config/urls.py

15 lines
212 B
Python
Raw Permalink Normal View History

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