Files
chatai/src/utils/axios.js

6 lines
177 B
JavaScript
Raw Normal View History

2023-05-15 01:24:18 +08:00
const ins = {
post: (url, body, config) => fetch(url, {...config, method: "POST", body}),
get: (url, config) => fetch(url, {...config, method: "GET"}),
}
2023-05-12 15:53:39 +08:00
export default ins