taskmanagerapi-i737xp/app/db/base_imports.py
Automated Action d1c05cbd6e Implement Task Manager API with FastAPI and SQLite
- 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
2025-06-12 18:14:56 +00:00

5 lines
200 B
Python

# Import all the models, so that Base has them before being
# imported by Alembic
from app.db.base import Base # noqa
from app.models.user import User # noqa
from app.models.task import Task # noqa