
- Setup project structure with FastAPI application - Create database models with SQLAlchemy - Configure Alembic for database migrations - Implement CRUD operations for products, categories, suppliers - Add inventory transaction functionality - Implement user authentication with JWT - Add health check endpoint - Create comprehensive documentation
13 lines
338 B
Python
13 lines
338 B
Python
from app.crud.crud_user import user
|
|
from app.crud.crud_product import product
|
|
from app.crud.crud_category import category
|
|
from app.crud.crud_supplier import supplier
|
|
from app.crud.crud_inventory_transaction import inventory_transaction
|
|
|
|
__all__ = [
|
|
"user",
|
|
"product",
|
|
"category",
|
|
"supplier",
|
|
"inventory_transaction",
|
|
] |