mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 00:50:09 -04:00
15 lines
238 B
JavaScript
15 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
|