You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
main
${ noResults }
23 lines
610 B
TypeScript
23 lines
610 B
TypeScript
import { YoutubeDLCLI } from '@server/helpers/youtube-dl/index.js'
|
|||
import { SCHEDULER_INTERVALS_MS } from '../../initializers/constants.js'
|
|||
import { AbstractScheduler } from './abstract-scheduler.js'
|
|||
|
|||
export class YoutubeDlUpdateScheduler extends AbstractScheduler {
|
|||
|
|||
private static instance: AbstractScheduler
|
|||
|
|||
protected schedulerIntervalMs = SCHEDULER_INTERVALS_MS.YOUTUBE_DL_UPDATE
|
|||
|
|||
private constructor () {
|
|||
super()
|
|||
}
|
|||
|
|||
protected internalExecute () {
|
|||
return YoutubeDLCLI.updateYoutubeDLBinary()
|
|||
}
|
|||
|
|||
static get Instance () {
|
|||
return this.instance || (this.instance = new this())
|
|||
}
|
|||
}
|