diff --git a/backend/app/api/v1/chores.py b/backend/app/api/v1/chores.py index 7c09fe3..f5799df 100644 --- a/backend/app/api/v1/chores.py +++ b/backend/app/api/v1/chores.py @@ -5,7 +5,7 @@ from typing import List from datetime import datetime from app.core.database import get_db -from app.core.security import get_current_user +from app.api.v1.auth import get_current_user from app.models.user import User from app.models.chore import Chore, ChoreStatus from app.schemas import chore as chore_schemas