From 93694b9b8e7d2b851fa264878262982c6f98dc37 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 12 Jul 2025 22:23:06 +0800 Subject: [PATCH] fix: bug --- python_core/cli/commands/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_core/cli/commands/auth.py b/python_core/cli/commands/auth.py index 95b54a4..f03df55 100644 --- a/python_core/cli/commands/auth.py +++ b/python_core/cli/commands/auth.py @@ -11,7 +11,7 @@ import json import getpass from python_core.utils.jsonrpc_enhanced import create_response_handler from python_core.api.auth_api import auth_api -from python_core.database.user import user_table +from python_core.database.user_postgres import user_table from python_core.utils.jwt_auth import jwt_auth from uuid import uuid4 console = Console()