Initial commit
This commit is contained in:
@@ -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);
|
||||
Reference in New Issue
Block a user