Automated Action a17fe518a9 Implement Small Business Inventory Management System
This commit includes:
- Project structure setup with FastAPI and SQLite
- Database models and schemas for inventory management
- CRUD operations for all entities
- API endpoints for product, category, supplier, and inventory management
- User authentication with JWT tokens
- Initial database migration
- Comprehensive README with setup instructions
2025-06-17 19:02:35 +00:00

7 lines
182 B
Python

# Import all models here for Alembic to discover
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()
# Import all models so Alembic can discover them