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

@@ -188,9 +188,16 @@ public class HelpTextEN
public class AccountTextEN
{
public string Desc => "Manage account mappings for SDK logins";
public string Usage => "Usage: /account create <email> <uid>";
public string Usage =>
"Usage: /account create <email> <uid>\n" +
"Usage: /account delete <email|uid>\n" +
"Usage: /account list";
public string Created => "Created account mapping: {0} -> UID {1}";
public string CreateFailed => "Failed to create account mapping: {0}";
public string Deleted => "Deleted account mapping: {0} -> UID {1}";
public string DeleteFailed => "Failed to delete account mapping: {0}";
public string DeleteOnline => "Cannot delete account while online: {0} -> UID {1}";
public string NotFound => "Account not found: {0}";
}
/// <summary>