import odooApi from '~/libs/odooApi'; import { IBanner } from '~/types/banner'; type GetBannerProps = { type: string; }; export const getBanner = async (params: GetBannerProps): Promise => { const url = `/api/v1/banner`; const searchParams = new URLSearchParams(params); return await odooApi('GET', `${url}?${searchParams}`); };