Skip to content

Instantly share code, notes, and snippets.

@yeshess
Created August 6, 2015 12:54
Show Gist options
  • Save yeshess/4b885b6dfa821d35db15 to your computer and use it in GitHub Desktop.
Save yeshess/4b885b6dfa821d35db15 to your computer and use it in GitHub Desktop.
function MyCtrl (serviceName){
this.message = 'Hello World!';
}
MyCtrl.prototype.sayHello = function(){
console.log(this.message);
}
exports = module.exports = MyCtrl
exports['@ng'] = {
name: 'myCtrl',
type: 'controller',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment