mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 11:16:50 +00:00
8 lines
144 B
Python
8 lines
144 B
Python
from django.conf.urls import url
|
|
|
|
from .views import IndexView
|
|
|
|
urlpatterns = [
|
|
url(r'^$', IndexView.as_view(), name='api-config-index'),
|
|
]
|