export default { async call(controller, method) { const apiUrl = '/App/api.php?prj=pharmamp&controller='+controller+'&method='+method if (import.meta.env.DEV) { console.log(apiUrl) } const response = await fetch(apiUrl) if (import.meta.env.DEV) { console.log(response.clone().text()) } return response.json(); } }