bots-frontend/repository/ask.js
2022-11-18 11:15:16 +07:00

19 lines
291 B
JavaScript

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