continuing, WIP

This commit is contained in:
theofficialomega
2025-07-16 15:19:12 +02:00
parent d8e4372f22
commit 6b3e17861a
9 changed files with 14 additions and 21 deletions

View File

@@ -1,8 +1,10 @@
const axios = require('axios')
const cheerio = require('cheerio')
const dayjs = require('dayjs')
const utc = require('dayjs/plugin/utc')
const timezone = require('dayjs/plugin/timezone')
const customParseFormat = require('dayjs/plugin/customParseFormat')
const { uniqBy } = require('../../scripts/functions')
dayjs.extend(utc)
dayjs.extend(timezone)
@@ -45,9 +47,6 @@ module.exports = {
return programs
},
async channels({ country }) {
const axios = require('axios')
const _ = require('lodash')
const providers = {
au: ['o', 'a'],
ca: [
@@ -147,7 +146,7 @@ module.exports = {
}
}
return _.uniqBy(channels, 'site_id')
return uniqBy(channels, 'site_id')
}
}