in monitoring/localRun.ts [52:64]
async function argumentBasedCLI() {
program
.option('-e, --env [environment]')
.option('-j, --jurisdiction [environment]')
.parse();
const options: LocalRunCLIUserInput = program.opts();
if (isArgumentValid(options)) {
await handleEvent(options);
} else {
throw new NoArgumentsError();
}
}