UNPKG

particle-cli

Version:

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

11 lines (8 loc) 303 B
'use strict'; const chalk = require('chalk'); module.exports = class DoctorCommand { deviceDoctor(){ console.log(`${chalk.bold.white('particle device doctor')} is no longer supported.`); console.log(`Go to the device doctor tool at ${chalk.bold.cyan('docs.particle.io/tools/doctor')}.\n`); } };