Skip to content

Instantly share code, notes, and snippets.

@dangoor
Created April 21, 2010 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dangoor/374368 to your computer and use it in GitHub Desktop.
Save dangoor/374368 to your computer and use it in GitHub Desktop.
"define metadata";
({
"name": "hello",
"provides": [
{
"ep": "command",
"name": "hello",
"description": "Says hi",
"pointer": "#helloWorld"
}
]
});
"end";
exports.helloWorld = function(env, args, request) {
request.done("Hi there");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment