6 lines
177 B
JavaScript
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
|