Skip to content

Commit 5014d11

Browse files
authored
Integrate exports router (#520)
1 parent 97f4426 commit 5014d11

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

backend/api/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
)
2727
from api.orders import router as orders_router
2828
from api.routes import router as api_router
29+
from api.exports import router as exports_router
2930
from api.routes_catalog import router as catalog_router
3031
from api.routes_catalog import router_mesh as catalog_mesh_router
3132
from api.exports import router as exports_router

backend/api/routes.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
from services.example_service import ExampleService
99
from api.shopify_webhook import router as shopify_router
10+
from api.exports import router as exports_router
1011

1112
# Configure logging
1213
logging.basicConfig(level=logging.INFO)
@@ -20,6 +21,7 @@
2021

2122
# Mount routers
2223
router.include_router(shopify_router)
24+
router.include_router(exports_router)
2325

2426

2527
@router.get("/example")

0 commit comments

Comments
 (0)