import odooApi from "@/core/api/odooApi" export const getPromotionHome = async () => { const response = await odooApi('GET', '/api/v1/promotion/home') return response } export const getProductPromotionHome = async ({id}) => { const response = await odooApi('GET', `/api/v1/promotion/home/${id}`) return response }