Create epg.js

This commit is contained in:
Aleksandr Statciuk 2021-09-16 03:53:06 +03:00
parent d7f3998a3d
commit 7f2c5b36c9

12
scripts/helpers/epg.js Normal file
View File

@ -0,0 +1,12 @@
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)
}
}
}