add: add order list api

This commit is contained in:
behruz-dev
2025-08-29 16:49:56 +05:00
parent 4f45b97aaa
commit 368ec932a6
5 changed files with 56 additions and 4 deletions

View File

@@ -4,4 +4,5 @@ from core.apps.orders.views import order as order_views
urlpatterns = [
path('order/create/', order_views.OrderCreateApiView.as_view()),
path('order/list/', order_views.OrderListApiView.as_view()),
]