add clear exit nodes pangctl command

This commit is contained in:
miloschwartz
2025-12-17 16:01:55 -05:00
parent e033c10021
commit 443b53ee37
2 changed files with 38 additions and 0 deletions

View File

@@ -4,10 +4,12 @@ import yargs from "yargs";
import { hideBin } from "yargs/helpers";
import { setAdminCredentials } from "@cli/commands/setAdminCredentials";
import { resetUserSecurityKeys } from "@cli/commands/resetUserSecurityKeys";
import { clearExitNodes } from "./commands/clearExitNodes";
yargs(hideBin(process.argv))
.scriptName("pangctl")
.command(setAdminCredentials)
.command(resetUserSecurityKeys)
.command(clearExitNodes)
.demandCommand()
.help().argv;