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