bots-frontend/repository/ask.js
2022-11-11 17:03:31 +07:00

19 lines
287 B
JavaScript

import {http} from "../utils/http";
const url = {
contacts: () => '/product/api/v5/customer-service'
}
const hooks = {}
const api = {
async getContacts() {
return await http.fetcher(url.contacts())
},
}
export const askRepository = {
url,
hooks,
api
}