mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-04-02 01:16:54 +02: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 |