1
Fork 0
dotfiles/.bauke/scripts/bulk/bulk.ts

16 lines
337 B
TypeScript
Raw Normal View History

2023-02-26 10:59:03 +00:00
import { Command } from "https://deno.land/x/cliffy@v0.25.7/command/mod.ts";
2023-02-25 16:37:04 +00:00
import { runCommand } from "./run.ts";
async function main(): Promise<void> {
await new Command()
.name("bulk")
.description("Bulk doer of things.")
.command("run", runCommand)
.parse(Deno.args);
}
if (import.meta.main) {
void main();
}