UNPKG

particle-cli

Version:

Simple Node commandline application for working with your Particle devices and using the Particle Cloud

10 lines (9 loc) 323 B
'use strict'; module.exports = ({ commandProcessor, root }) => { commandProcessor.createCommand(root, 'doctor', 'NOT SUPPORTED. Go to the device doctor tool at docs.particle.io/tools/doctor', { handler: () => { const DoctorCommand = require('../cmd/doctor'); return new DoctorCommand().deviceDoctor(); } }); };