iptv/scripts/helpers/epg.js
Aleksandr Statciuk 7f2c5b36c9 Create epg.js
2021-09-16 03:53:06 +03:00

13 lines
231 B
JavaScript

const axios = require('axios')
module.exports = {
codes: {
async load() {
return await axios
.get('https://iptv-org.github.io/epg/codes.json')
.then(r => r.data)
.catch(console.log)
}
}
}