Initial commit

This commit is contained in:
2026-06-13 09:36:13 -04:00
commit 2b48c77a82
216 changed files with 38096 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/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);