UNPKG

kasa-smart-hub

Version:

Virtual Smart Hub for TP-Link Kasa Smart Home

11 lines (8 loc) 195 B
#!/usr/bin/env node import Yargs from 'yargs'; import start from './cmds/start.js'; export default Yargs(process.argv.slice(2)) .command(start, 'start') .demandCommand() .help() .argv;