blob: 86b2914f8e4099ffe96de1c79bffaae362b1649c (
plain)
1
2
3
4
5
6
7
8
9
|
import _ from "lodash-contrib"
import axios from "axios"
const productSearchApi = async ({ query }) => {
const dataProductSearch = await axios(`${process.env.SELF_HOST}/api/shop/search?${query}`)
return dataProductSearch.data
}
export default productSearchApi
|