Skip to content

Instantly share code, notes, and snippets.

@jiminys
Created January 20, 2015 07:46
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 jiminys/3eb9167cedf224689029 to your computer and use it in GitHub Desktop.
Save jiminys/3eb9167cedf224689029 to your computer and use it in GitHub Desktop.
ng-service.js
'use strict';
(function () {
var app = require('../module');
/*
* @ngInject
* @export
*/
function Service() {}
Service.prototype.func = function () {
};
app.service('Service', Service);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment