blob: 5c945ee099e49189da8985dfbd81dadcf9ce9ab3 (
plain)
1
2
3
4
5
6
7
8
|
import odooApi from '@/core/api/odooApi'
const bannerSectionApi = async () => {
const dataBannerSections = await odooApi('GET', '/api/v1/banner?type=home-banner')
return dataBannerSections
}
export default bannerSectionApi
|