Inventory-Management-System/transaction/urls.py
2023-11-19 13:14:28 +07:00

8 lines
169 B
Python

from django.urls import path
from transaction.views import CustomerOrderView
urlpatterns = [
path('order/', CustomerOrderView.as_view(), name='customer-order'),
]