# Pastebin IUePcB62 var documentApp = angular.module('documentApp', []); var documentListController = documentApp.controller('documentListController', ['$scope', 'document', function ($scope, document) { }]); var documentService = documentApp.factory('document', ['$resource', function ($resource) { return $resource('/api/document/:id'); }]);