Skip to content

Instantly share code, notes, and snippets.

@MikeRatcliffe
Created July 24, 2013 12:17
Show Gist options
  • Save MikeRatcliffe/6070006 to your computer and use it in GitHub Desktop.
Save MikeRatcliffe/6070006 to your computer and use it in GitHub Desktop.
GCLI command file
[{
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