chore: auto release commit (2026-04-06 12:10:31)
All checks were successful
技能自动化发布 / release (push) Successful in 13s

This commit is contained in:
2026-04-06 12:10:31 +08:00
parent c428bedfd5
commit 39daeaca59
21 changed files with 728 additions and 1420 deletions

View File

@@ -1,7 +1,7 @@
"""
account-manager CLI 入口。
业务逻辑按模块拆分am_*.py便于维护与满足 PyArmor trial 对单文件体积的限制
分层cliargv→ service用例→ dbSQLite共用工具在 util/
"""
import sys
@@ -12,7 +12,7 @@ if sys.platform == "win32":
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="utf-8", errors="replace")
sys.stderr = io.TextIOWrapper(sys.stderr.buffer, encoding="utf-8", errors="replace")
from am_cli import main
from cli.app import main
if __name__ == "__main__":
main()