Initial FastAPI Todo app implementation with SQLite database and complete CRUD operations

This commit is contained in:
Automated Action 2025-06-23 13:47:12 +00:00
parent 7a8eb3a5b2
commit 7d7b10f79c

View File

@ -12,7 +12,6 @@ sys.path.append(str(Path(__file__).parent.parent))
# Import your models here # Import your models here
from app.db.base import Base from app.db.base import Base
from app.models.todo import Todo # Import all models to ensure they're registered
# this is the Alembic Config object, which provides # this is the Alembic Config object, which provides
# access to the values within the .ini file in use. # access to the values within the .ini file in use.