1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/src/aquarius/AquariusConnector.ts

15 lines
298 B
TypeScript
Raw Normal View History

2018-10-26 11:57:26 +02:00
import fetch from "node-fetch"
export default class AquariusConnector {
public post(url, payload) {
return fetch(url, {
method: "POST",
body: payload,
headers: {
"Content-type": "application/json",
},
})
}
}