mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-08 00:08:14 +01:00
12 lines
180 B
JavaScript
12 lines
180 B
JavaScript
|
class PodcastManager {
|
||
|
constructor(db) {
|
||
|
this.db = db
|
||
|
|
||
|
this.downloadQueue = []
|
||
|
}
|
||
|
|
||
|
async downloadPodcasts(podcasts, targetDir) {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
module.exports = PodcastManager
|