add clear license key command to pangctl

This commit is contained in:
miloschwartz
2026-01-19 11:39:58 -08:00
parent acca1b6a91
commit 14a4b1b4b4
2 changed files with 38 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ import { setAdminCredentials } from "@cli/commands/setAdminCredentials";
import { resetUserSecurityKeys } from "@cli/commands/resetUserSecurityKeys";
import { clearExitNodes } from "./commands/clearExitNodes";
import { rotateServerSecret } from "./commands/rotateServerSecret";
import { clearLicenseKeys } from "./commands/clearLicenseKeys";
yargs(hideBin(process.argv))
.scriptName("pangctl")
@@ -13,5 +14,6 @@ yargs(hideBin(process.argv))
.command(resetUserSecurityKeys)
.command(clearExitNodes)
.command(rotateServerSecret)
.command(clearLicenseKeys)
.demandCommand()
.help().argv;