mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +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
|