mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-30 09:04:48 +02:00
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
|
#!/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;
|