angular.module('focaBotoneraPrincipal')
.service('focaBotoneraPrincipalService', [
'$http', 'API_ENDPOINT',
function($http, API_ENDPOINT) {
return {
obtenerBotones: function(app) {
return $http.get(API_ENDPOINT.URL + '/boton' + '/' + app);
}
};
}
]);