
- Created FastAPI application with SQLite database - Implemented models for inventory items, categories, suppliers, and transactions - Added authentication system with JWT tokens - Implemented CRUD operations for all models - Set up Alembic for database migrations - Added comprehensive API documentation - Configured Ruff for code linting
6 lines
210 B
Python
6 lines
210 B
Python
from app.crud.crud_category import category
|
|
from app.crud.crud_item import item
|
|
from app.crud.crud_supplier import supplier
|
|
from app.crud.crud_transaction import transaction
|
|
from app.crud.crud_user import user
|