mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-12 04:11:43 +00:00
14 lines
283 B
JavaScript
14 lines
283 B
JavaScript
class DLNAController {
|
|
constructor() {}
|
|
|
|
async get_Devices(req, res) {
|
|
var count = 0
|
|
const players = await this.DLNAManager.Client.players
|
|
|
|
return res.status(200).send(players)
|
|
}
|
|
middleware(req, res, next) {
|
|
next()
|
|
}
|
|
}
|
|
module.exports = new DLNAController()
|