textmate
Version:
"use your command line for texting purposes"
21 lines (17 loc) • 380 B
JavaScript
exports.command = 'start'
exports.describe = 'Start a conversation'
exports.builder = {
with: {
alias: 'w',
describe: 'Start a conversation with a contact',
type: 'string'
},
message: {
alias: 'm',
describe: 'Your text message goes here',
type: 'string'
}
}
exports.handler = function (argv) {
// refactor start conversation argv to be here
}