
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
5 lines
275 B
Python
5 lines
275 B
Python
from .crud_user import user as user
|
|
from .crud_category import category as category
|
|
from .crud_supplier import supplier as supplier
|
|
from .crud_product import product as product
|
|
from .crud_inventory import inventory as inventory, inventory_transaction as inventory_transaction |