import appIngestion from "./appIngestion"; const endpoint = "/api/wpdAppIngestion?"; async function sendFormAnswer(ingestionObject) { // console.log(JSON.stringify(ingestionObject)); const response = await appIngestion.post( endpoint, JSON.stringify(ingestionObject) ); return response; } export default sendFormAnswer;