feat(admincli): add generate key command

This commit is contained in:
Stevan Freeborn
2026-02-06 06:53:20 -06:00
parent 9b4f0c6b9e
commit b2086d8185
4 changed files with 21 additions and 3 deletions
+6 -1
View File
@@ -3,7 +3,12 @@ namespace FiscalOS.AdminCLI;
internal static class Commands
{
public const string CreateUser = "Create User";
public const string GenerateKey = "Generate Key";
public const string Exit = "Exit";
public static readonly string[] All = [CreateUser, Exit];
public static readonly string[] All = [
CreateUser,
GenerateKey,
Exit
];
}