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

9 lines
261 B
Python

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