fix: rename auth module to auth_service to resolve circular import
Deploy Dashboard (Dev) / deploy-dev (push) Failing after 2m4s
Run Tests / Backend Tests (push) Failing after 2m12s
Run Tests / Frontend Tests (push) Failing after 8m55s
Run Tests / Test Summary (push) Failing after 18s

This commit is contained in:
Gan, Jimmy
2026-04-02 01:02:45 +08:00
parent 2b3e5d6e7c
commit 1b769bca1d
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
from fastapi import APIRouter, Depends, HTTPException
from pydantic import BaseModel
import pyotp
import auth
import auth_service as auth
router = APIRouter()