blob: 670661aa466e655b439731b3f3b309e97a7ed720 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import _ from 'lodash-contrib'
import axios from 'axios'
const productSearchApi = async ({ query, operation = 'OR' }) => {
const dataProductSearch = await axios(
`${process.env.NEXT_PUBLIC_SELF_HOST}/api/shop/promo?${query}&operation=${operation}`
)
return dataProductSearch.data
}
export default productSearchApi
|