mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 10:59:00 +00:00
14 lines
220 B
Python
14 lines
220 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
URLs for customers app
|
|
"""
|
|
|
|
from django.urls import re_path
|
|
from .views import CreateView
|
|
|
|
urlpatterns = [
|
|
re_path(r'^$',
|
|
CreateView.as_view(),
|
|
name='customers-create'),
|
|
]
|