Merge pull request #3585 from moyaqoob/fix-cli-import-style

Normalize CLI command import paths in pangctl entrypoint
This commit is contained in:
Owen Schwartz
2026-09-21 14:55:43 -04:00
committed by GitHub
+2 -2
View File
@@ -2,8 +2,8 @@
import yargs from "yargs";
import { hideBin } from "yargs/helpers";
import { setAdminCredentials } from "@cli/commands/setAdminCredentials";
import { resetUserSecurityKeys } from "@cli/commands/resetUserSecurityKeys";
import { setAdminCredentials } from "./commands/setAdminCredentials";
import { resetUserSecurityKeys } from "./commands/resetUserSecurityKeys";
import { clearExitNodes } from "./commands/clearExitNodes";
import { rotateServerSecret } from "./commands/rotateServerSecret";
import { clearLicenseKeys } from "./commands/clearLicenseKeys";