(function(){
'use strict';
angular.module('ammicoHome',['ngRoute'])
.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'home/home.html',
controller: 'homeCtrl'
});
})
.controller('homeCtrl', function($scope, $location){
console.log('5-0',$scope, $location);
});
})();