mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 16:40:07 -04:00
12 lines
181 B
JavaScript
12 lines
181 B
JavaScript
module.exports = {
|
|
site: 'example.com',
|
|
url() {
|
|
return `https://example.com`
|
|
},
|
|
logo() {
|
|
return 'https://example.com/logo.png'
|
|
},
|
|
parser() {
|
|
return []
|
|
}
|
|
}
|