#!/home/bot/.nvm/versions/node/v18.14.0/bin/node 'use strict'; import 'dotenv/config'; import { postRegularStatus, postReply } from './lib/replybot.js'; const choice = process.argv[2]; // command line switch try{ switch (choice.toLowerCase()){ case 'replybot reply': // you can choose "reply" or "status" from here when calling in Crontab await postReply(); break; case 'replybot status': await postRegularStatus(); break; default: console.log('Something went wrong with nice-bot (ya dun goof\'d)'); break; }; } catch (error){ throw Error(error); }