
This commit implements a comprehensive inventory management system for small businesses using FastAPI and SQLAlchemy. Features include: - Product and category management - Inventory tracking across multiple locations - Supplier management - Purchase management - Transaction tracking for inventory movements - Complete API documentation generated with BackendIM... (backend.im)
3 lines
185 B
Python
3 lines
185 B
Python
from app.api.routes.product import router as product_router
|
|
from app.api.routes.inventory import router as inventory_router
|
|
from app.api.routes.supplier import router as supplier_router |