This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
fediverse-imagebot/bot.js
Sam Therapy 91a95e96f5
Add basic stuffs
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-01-03 17:02:06 -06:00

16 lines
338 B
JavaScript

import 'command-line-args';
import 'command-line-usage';
const optionDefinitions = [
{ name: "help", type: Boolean, alias: 'help' },
{ name: 'src', type: String, multiple: true, defaultOption: true },
{ name: 'timeout', alias: 't', type: Number }
]
const args = commandLineArgs(optionDefinitions)
if (args.help) {
return 0;
}