aboutsummaryrefslogtreecommitdiff
path: root/order-service/app/api/v1/api.py
diff options
context:
space:
mode:
authoralex <[email protected]>2026-07-15 20:24:31 +0200
committeralex <[email protected]>2026-07-15 20:24:31 +0200
commit8e12cb9bb66adc7adaf6d276133d6f235d294d23 (patch)
tree31aa3f6a06407b39bb23d7cc724c70899795a788 /order-service/app/api/v1/api.py
downloadorder-inventory-system-8e12cb9bb66adc7adaf6d276133d6f235d294d23.tar.xz
order-inventory-system-8e12cb9bb66adc7adaf6d276133d6f235d294d23.zip
init
Diffstat (limited to 'order-service/app/api/v1/api.py')
-rw-r--r--order-service/app/api/v1/api.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/order-service/app/api/v1/api.py b/order-service/app/api/v1/api.py
new file mode 100644
index 0000000..a967cb4
--- /dev/null
+++ b/order-service/app/api/v1/api.py
@@ -0,0 +1,5 @@
+from fastapi import APIRouter
+from app.api.v1.endpoints import orders
+
+api_router = APIRouter()
+api_router.include_router(orders.router, prefix="/orders", tags=["orders"])