mirror of
https://github.com/iptv-org/epg
synced 2025-12-17 02:47:02 -05:00
17 lines
266 B
JavaScript
17 lines
266 B
JavaScript
|
|
module.exports = {
|
||
|
|
site: 'example.com',
|
||
|
|
days: 2,
|
||
|
|
url() {
|
||
|
|
return `https://example.com`
|
||
|
|
},
|
||
|
|
parser() {
|
||
|
|
return [
|
||
|
|
{
|
||
|
|
title: 'Program1',
|
||
|
|
start: '2022-03-06T04:30:00.000Z',
|
||
|
|
stop: '2022-03-06T07:10:00.000Z'
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|