15 lines
479 B
TypeScript
15 lines
479 B
TypeScript
#!/usr/bin/env bun
|
|
(globalThis as Record<string, unknown>).scramble = (s: string): string => s;
|
|
(globalThis as Record<string, unknown>).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);
|