summaryrefslogtreecommitdiff
path: root/src/lib/brand/api/BrandApi.js
blob: 15634cc4bc51ccf15c73f50db2a4ba9c696b54a9 (plain)
1
2
3
4
5
6
7
8
import odooApi from "@/core/api/odooApi"

const BrandApi = async ({ id }) => {
  const dataBrand = await odooApi('GET', `/api/v1/manufacture/${id}`)
  return dataBrand
}

export default BrandApi