
- Set up project structure and dependencies - Create database models for tasks and users with SQLAlchemy - Configure Alembic for database migrations - Implement authentication system with JWT tokens - Create CRUD API endpoints for tasks and users - Add health check endpoint - Update README with documentation
15 lines
289 B
Python
15 lines
289 B
Python
from .security import (
|
|
create_access_token,
|
|
get_current_active_user,
|
|
get_current_user,
|
|
get_password_hash,
|
|
verify_password,
|
|
)
|
|
|
|
__all__ = [
|
|
"create_access_token",
|
|
"verify_password",
|
|
"get_password_hash",
|
|
"get_current_user",
|
|
"get_current_active_user"
|
|
] |