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

15 lines
305 B
TypeScript
Raw Normal View History

import { Command } from "../dependencies.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();
}