repo for angularjs testing training
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
576 B

(function(angular) {
'use strict';
angular.module('book-inventory-app', [
'ui.router.state',
'book-inventory-app.services',
'book-inventory-app.books',
'book-inventory-app.edit',
'book-inventory-app.add',
'book-inventory-app.filters'
]);
angular.module('book-inventory-app.services', []);
angular.module('book-inventory-app.books', []);
angular.module('book-inventory-app.edit', []);
angular.module('book-inventory-app.add', []);
angular.module('book-inventory-app.filters', []);
})(angular);