API-Manager/apimanager/config/urls.py
Sebastian Henschel 01970caaa8 Added config app
And removed old api_config app
2017-06-10 16:00:20 +02:00

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'),
]