2026-02-02 15:41:47 -06:00
|
|
|
namespace FiscalOS.AdminCLI;
|
|
|
|
|
|
|
|
|
|
internal static class Commands
|
|
|
|
|
{
|
|
|
|
|
public const string CreateUser = "Create User";
|
2026-02-06 06:48:01 -06:00
|
|
|
public const string GenerateKey = "Generate Key";
|
2026-02-02 15:41:47 -06:00
|
|
|
public const string Exit = "Exit";
|
|
|
|
|
|
2026-02-06 06:48:01 -06:00
|
|
|
public static readonly string[] All = [
|
|
|
|
|
CreateUser,
|
|
|
|
|
GenerateKey,
|
|
|
|
|
Exit
|
|
|
|
|
];
|
2026-02-02 15:41:47 -06:00
|
|
|
}
|