add: add order api

This commit is contained in:
behruz-dev
2025-08-26 14:18:41 +05:00
parent eeb4c2a9a1
commit 0a996bfe16
9 changed files with 125 additions and 4 deletions

7
core/apps/orders/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from core.apps.orders import views
urlpatterns = [
path('order/list/', views.OrderListApiView.as_view()),
]