eximiabots-radiox/struct/funcs/radiostations.js

9 lines
248 B
JavaScript
Raw Normal View History

2020-03-08 23:26:24 +00:00
module.exports = async function () {
const fetch = require('node-fetch');
let data = fetch('https://gitea.cwinfo.org/cwchristerw/radio/raw/branch/master/playlist.json')
.then(res => res.json());
return data;
}