Всем привет! Не могу разобраться, не работает один из скриптов, по одному работают
var myApp = angular.module('myApp', ['ui.bootstrap']);
myApp.directive('myDirective', function() {});
myApp.factory('myService', function() {});
function MyCtrl($scope) {
$scope.name = 'Superhero';
}
var myApp = angular.module('myApp',['ngCart']);
myApp.controller ('myCtrl', ['$scope', '$http', 'ngCart', function($scope, $http, ngCart) {
ngCart.setShipping(500);
}]);
Заранее спасибо