
- 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
3 lines
90 B
Python
3 lines
90 B
Python
from app.db.deps import get_current_user, get_db
|
|
|
|
__all__ = ["get_db", "get_current_user"] |