Create podcast manager and re-organize managers

This commit is contained in:
advplyr 2022-03-20 16:41:06 -05:00
parent 122f2a2556
commit e1e6b46456
12 changed files with 86 additions and 65 deletions

View file

@ -0,0 +1,12 @@
class PodcastManager {
constructor(db) {
this.db = db
this.downloadQueue = []
}
async downloadPodcasts(podcasts, targetDir) {
}
}
module.exports = PodcastManager