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