mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-12-09 21:39:37 +00:00
Create podcast manager and re-organize managers
This commit is contained in:
parent
122f2a2556
commit
e1e6b46456
12 changed files with 86 additions and 65 deletions
12
server/managers/PodcastManager.js
Normal file
12
server/managers/PodcastManager.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
class PodcastManager {
|
||||
constructor(db) {
|
||||
this.db = db
|
||||
|
||||
this.downloadQueue = []
|
||||
}
|
||||
|
||||
async downloadPodcasts(podcasts, targetDir) {
|
||||
|
||||
}
|
||||
}
|
||||
module.exports = PodcastManager
|
||||
Loading…
Add table
Add a link
Reference in a new issue