aboutsummaryrefslogtreecommitdiff
path: root/inventory-service/app/api/v1/api.py
diff options
context:
space:
mode:
Diffstat (limited to 'inventory-service/app/api/v1/api.py')
-rw-r--r--inventory-service/app/api/v1/api.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/inventory-service/app/api/v1/api.py b/inventory-service/app/api/v1/api.py
new file mode 100644
index 0000000..b5d56d3
--- /dev/null
+++ b/inventory-service/app/api/v1/api.py
@@ -0,0 +1,9 @@
+from fastapi import APIRouter
+from app.api.v1.endpoints import products, stock_movements
+
+api_router = APIRouter()
+
+api_router.include_router(products.router, prefix="/products", tags=["products"])
+api_router.include_router(
+ stock_movements.router, prefix="/stock-movements", tags=["stock-movements"]
+)