API-Manager/apimanager/customers/urls.py
2024-10-31 12:56:29 +01:00

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