
- Created complete RESTful API for inventory management - Set up database models for items, categories, suppliers, and transactions - Implemented user authentication with JWT tokens - Added transaction tracking for inventory movements - Created comprehensive API endpoints for all CRUD operations - Set up Alembic for database migrations - Added input validation and error handling - Created detailed documentation in README
7 lines
276 B
Python
7 lines
276 B
Python
from app.crud.crud_user import user
|
|
from app.crud.crud_item import item
|
|
from app.crud.crud_category import category
|
|
from app.crud.crud_supplier import supplier
|
|
from app.crud.crud_transaction import transaction
|
|
|
|
__all__ = ["user", "item", "category", "supplier", "transaction"] |