angular.module('myApp', []) .service('myService', function () { /* ... */ }) .controller('MyController', ['myService', function (myService) { // Do something with myService }]);