Files
epg/tests/__data__/input/sites/epg-grab/epg-grab.config.js

17 lines
266 B
JavaScript
Raw Normal View History

2023-07-19 04:16:05 +03:00
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'
}
]
}
}