#!/usr/bin/env bun (globalThis as Record).scramble = (s: string): string => s; (globalThis as Record).beautify = (s: string): string => s; import { parseArgs, runModule } from "./common"; async function main() { const { GcpSecretsService } = await import("../providers/gcp/secrets"); const provider = new GcpSecretsService(); return provider.execute(); } const args = parseArgs(Bun.argv.slice(2)); runModule("GcpSecretsService", main);