Files
hoppscotch/functions/strategies/ProxyStrategy.js

13 lines
262 B
JavaScript

import axios from "axios";
const proxyStrategy = async (req, store) => {
const { data } = await axios.post(
store.state.postwoman.settings.PROXY_URL ||
"https://postwoman.apollotv.xyz/",
req
);
return data;
};
export default proxyStrategy;