
- Create project structure with FastAPI and SQLAlchemy - Implement database models for items, categories, suppliers, and stock movements - Add CRUD operations for all models - Configure Alembic for database migrations - Create RESTful API endpoints for inventory management - Add health endpoint for system monitoring - Update README with setup and usage instructions generated with BackendIM... (backend.im)
5 lines
306 B
Python
5 lines
306 B
Python
from app.routes.item_routes import router as item_routes
|
|
from app.routes.category_routes import router as category_routes
|
|
from app.routes.supplier_routes import router as supplier_routes
|
|
from app.routes.stock_routes import router as stock_routes
|
|
from app.routes.health_routes import router as health_routes |