const axios = require('axios'); const getOdoo = async (url) => { try { let res = await axios.get(process.env.DB_HOST + url); return res.data.result || []; } catch (error) { console.log(error); } } export { getOdoo, };