fix: 更新用户信息命令以使用新的获取令牌逻辑,并优化本地用户检查功能

This commit is contained in:
2026-02-21 22:19:30 +08:00
parent c0edd2cbbf
commit a4a5ed0b50
3 changed files with 52 additions and 43 deletions

View File

@@ -7,7 +7,7 @@ const me = new Command('me')
.action(async () => {
const aq = new AssistantQuery(assistantConfig);
await aq.init()
const info = await aq.queryLogin.checkLocalUser()
const info = await aq.getToken()
logger.info(info);
});