sync: migrate secure-online-shop to Gitea (2026-08-10)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
from app.api import auth, orders, payments, products
|
||||
|
||||
api_router = APIRouter()
|
||||
api_router.include_router(auth.router, prefix="/auth", tags=["auth"])
|
||||
api_router.include_router(products.router, prefix="/products", tags=["catalog"])
|
||||
api_router.include_router(orders.router, prefix="/orders", tags=["orders"])
|
||||
api_router.include_router(payments.router, prefix="/payments", tags=["payments"])
|
||||
Reference in New Issue
Block a user