10 lines
259 B
JavaScript
10 lines
259 B
JavaScript
|
'use strict';
|
||
|
|
||
|
angular.module('microStock')
|
||
|
.controller('ListCtrl',['$scope','$http',function($scope,$http){
|
||
|
$scope.list = [];
|
||
|
$http.get(config.microservice_dependencies.products).then(function(res) {
|
||
|
$scope.list = res.data
|
||
|
});
|
||
|
}]);
|