13 lines
261 B
JavaScript
13 lines
261 B
JavaScript
// 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() |