Created
June 22, 2012 11:02
-
-
Save joewalker/2972100 to your computer and use it in GitHub Desktop.
Basic 'hello' command using mozcmd
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
[ | |
{ | |
name: 'hello', | |
description: 'Show a message', | |
params: [ | |
{ | |
name: 'name', | |
type: 'string', | |
description: 'Who to say hello to', | |
} | |
], | |
exec: function(args, context) { | |
return 'Good morning, ' + args.name; | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment