random-bunny/src/cli.ts

9 lines
218 B
TypeScript
Raw Normal View History

import { Command } from "commander";
const program = new Command();
program
.name('random-bunny')
.description('Get a random image url from a subreddit of your choosing')
.version('2.2');
program.parse();