mirror of
https://github.com/iptv-org/epg
synced 2025-12-17 02:47:02 -05:00
16 lines
238 B
JavaScript
16 lines
238 B
JavaScript
|
|
class API {
|
||
|
|
constructor(filepath) {
|
||
|
|
this.collection = require(filepath)
|
||
|
|
}
|
||
|
|
|
||
|
|
get(id) {
|
||
|
|
return this.collection.find(c => c.id === id)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
const api = {}
|
||
|
|
|
||
|
|
api.channels = new API('../data/channels.json')
|
||
|
|
|
||
|
|
module.exports = api
|