utility-function-extractor/lib/pushToMongo.js

8 lines
236 B
JavaScript
Raw Normal View History

2021-09-22 20:59:06 +00:00
import axios from "axios"
export async function pushToMongo(data){
let response = await axios.post('https://metaforecast-twitter-bot.herokuapp.com/utility-function-extractor', {
data: data
})
console.log(response)
}