IO添加重新验证命令 (#554)

* 🐛 修复更新绑定时验证状态没有正确更新的bug

*  IO添加重新验证命令

* Apply suggestion from @Copilot

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
呵呵です
2025-07-28 01:11:41 +08:00
committed by GitHub
parent 0648ca021b
commit 068c508f57
4 changed files with 114 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ command = Subcommand(
)
from . import bind, config, list, query, rank, record, unbind # noqa: A004, E402
from . import bind, config, list, query, rank, record, unbind, verify # noqa: A004, E402
main_command.add(command)
@@ -36,4 +36,5 @@ __all__ = [
'rank',
'record',
'unbind',
'verify',
]