fosrl.pangolin/cli/index.ts

12 lines
292 B
TypeScript
Raw Normal View History

2025-06-15 13:19:07 -04:00
#!/usr/bin/env node
import yargs from "yargs";
import { hideBin } from "yargs/helpers";
import { setAdminCredentials } from "@cli/commands/setAdminCredentials";
yargs(hideBin(process.argv))
.scriptName("pangctl")
.command(setAdminCredentials)
.demandCommand()
.help().argv;