account delete command

This commit is contained in:
Kei-Luna
2026-05-15 14:12:40 +09:00
parent 3ffb7ebf29
commit 30c52b6aa8
4 changed files with 61 additions and 3 deletions

View File

@@ -222,9 +222,16 @@ public class HelpTextCHS
public class AccountTextCHS
{
public string Desc => "管理 SDK 登录使用的账号映射";
public string Usage => "用法: /account create <邮箱> <UID>";
public string Usage =>
"用法: /account create <邮箱> <UID>\n" +
"用法: /account delete <邮箱|UID>\n" +
"用法: /account list";
public string Created => "已创建账号映射: {0} -> UID {1}";
public string CreateFailed => "创建账号映射失败: {0}";
public string Deleted => "已删除账号映射: {0} -> UID {1}";
public string DeleteFailed => "删除账号映射失败: {0}";
public string DeleteOnline => "账号在线时无法删除: {0} -> UID {1}";
public string NotFound => "未找到账号: {0}";
}
/// <summary>