fonchat/http/index.js

13 lines
181 B
JavaScript
Raw Permalink Normal View History

2023-10-25 02:02:04 +00:00
import http from './interface'
export const request = (url, data, type) => {
return http.request({
url: url,
method: type || 'POST',
data
})
}
export default {
request,
}