import * as on from'./power/on.js';
import * as off from'./power/off.js';
exportconst command = 'power <state>';
exportconst description = 'Turn your TV on or off';
exportconstbuilder = yargs => {
yargs.command(on);
yargs.command(off);
}
exportconsthandler = () => {};