From 8ec9fb3cb9a1938fef22bc96fe5ba8bcfd3b4120 Mon Sep 17 00:00:00 2001 From: yaqoob Date: Sat, 15 Aug 2026 03:49:08 +0530 Subject: [PATCH] Normalize CLI command import paths in pangctl entrypoint --- cli/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/index.ts b/cli/index.ts index cfa65625c..688416ab6 100644 --- a/cli/index.ts +++ b/cli/index.ts @@ -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";