Created
June 18, 2018 08:28
-
-
Save ZeroX-DG/888d660bf4621719e20861204234773b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Command} from '@oclif/command' | |
export default class Add extends Command { | |
static description = 'Add new todo to list' | |
static args = [{name: 'todo'}] | |
async run() { | |
const {args} = this.parse(Add) | |
const todo = args.todo | |
if (todo) { | |
this.log(`[Success] Added new todo: ${todo}`) | |
} else { | |
this.error('please specify the new todo') | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment