UNPKG

netpad-cli

Version:

NetPad CLI for plugin management, workflows, and more.

8 lines 221 B
module.exports = (program) => { program .command('logs') .description('Show logs/debug info (coming soon)') .action(() => { console.log('Logs command coming soon!'); }); };