import axios from "axios"; export default { getAllOrganizations() { return axios.get('http://localhost:8080/organizations/listAll').then(response => { return response.data; }); }, addOrganization(organization) { return axios.post('http://localhost:8080/organizations/addOrganization', organization).then(response => { return response.data; }); } }