Files
chatai/src/utils/axios.js
2023-05-15 01:24:18 +08:00

6 lines
177 B
JavaScript

const ins = {
post: (url, body, config) => fetch(url, {...config, method: "POST", body}),
get: (url, config) => fetch(url, {...config, method: "GET"}),
}
export default ins