Cleaner Looking args

This commit is contained in:
Daniel Odendahl Jr
2017-05-02 17:54:07 +00:00
parent 57ee7fa82b
commit 3bb21c2df0
83 changed files with 787 additions and 616 deletions
+7 -5
View File
@@ -9,11 +9,13 @@ module.exports = class ForecastCommand extends Command {
group: 'search',
memberName: 'forecast',
description: 'Gets the seven-day forecast for a specified location.',
args: [{
key: 'query',
prompt: 'What location would you like to get the forecast for?',
type: 'string'
}]
args: [
{
key: 'query',
prompt: 'What location would you like to get the forecast for?',
type: 'string'
}
]
});
}