eximiabots-radiox/struct/funcs/radiostations.js
2020-03-09 01:26:24 +02:00

9 lines
248 B
JavaScript

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;
}