From be1a52976fe271b18029f57cb2585ac585d6378f Mon Sep 17 00:00:00 2001 From: Automated Action Date: Thu, 12 Jun 2025 17:53:02 +0000 Subject: [PATCH] Fix import of get_current_active_superuser in deps.py --- app/api/v1/deps.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/api/v1/deps.py b/app/api/v1/deps.py index 3f30719..f5eb84b 100644 --- a/app/api/v1/deps.py +++ b/app/api/v1/deps.py @@ -1 +1,7 @@ # Re-export dependencies from core.deps +from app.core.deps import ( + get_db, + get_current_user, + get_current_active_user, + get_current_active_superuser, +) \ No newline at end of file