
- 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
4 lines
73 B
Python
4 lines
73 B
Python
from .task import Task
|
|
from .user import User
|
|
|
|
__all__ = ["User", "Task"] |