This commit is contained in:
2021-11-04 10:05:17 +00:00
parent ff67f04c85
commit 82da139825
4 changed files with 172 additions and 0 deletions

13
bot.js Normal file
View File

@@ -0,0 +1,13 @@
// https://api.fynn.ai/events
// https://vps.anotherfoxguy.com/dl/fur-events.json
const axios = require('axios').default;
async function main(){
let dat = await axios.get("https://vps.anotherfoxguy.com/dl/fur-events.json")
console.log(dat)
}
main()