Create epg.js
This commit is contained in:
12
scripts/helpers/epg.js
Normal file
12
scripts/helpers/epg.js
Normal 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)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user