
- 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
83 B
Python
4 lines
83 B
Python
from .crud_task import task
|
|
from .crud_user import user
|
|
|
|
__all__ = ["user", "task"] |