
- Set up project structure with FastAPI - Implement SQLAlchemy models for inventory items and categories - Create database connection with SQLite - Add CRUD operations for inventory management - Implement API endpoints for categories, items, and inventory transactions - Add health check endpoint - Set up Alembic for database migrations - Update README with documentation
2 lines
147 B
Python
2 lines
147 B
Python
from app.crud.crud_category import category as category
|
|
from app.crud.crud_item import item as item, inventory_transaction as inventory_transaction |