blob: 115b07dc3ee68667d7538947d8a832a9019a7948 (
plain)
1
2
3
4
5
6
7
8
|
import odooApi from '@/core/api/odooApi'
const flashSaleApi = async () => {
const flashSale = await odooApi('GET', '/api/v1/flashsale/header')
return flashSale
}
export default flashSaleApi
|