blob: f6fb4d61d28c89bf9634f063e462fd18ca4404f4 [file] [log] [blame]
angular.module('autoscaling')
.directive('serviceContainer', function(lodash){
return {
restrict: 'E',
scope: {},
bindToController: true,
controllerAs: 'vm',
templateUrl: 'templates/service-container.tpl.html',
controller: () => {
}
};
});