mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 15:06:48 +00:00
15 lines
209 B
Python
15 lines
209 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
URLs for config app
|
|
"""
|
|
|
|
from django.conf.urls import url
|
|
|
|
from .views import IndexView
|
|
|
|
urlpatterns = [
|
|
url(r'^$',
|
|
IndexView.as_view(),
|
|
name='config-index'),
|
|
]
|