improve chromecast

This commit is contained in:
vapormusic 2022-03-12 16:10:12 +07:00
parent f21a13f50a
commit ab774d7eeb
6 changed files with 64 additions and 16 deletions

View file

@ -21,4 +21,12 @@ CiderCastController.prototype.sendIp = function(ip) {
this.request(data);
};
CiderCastController.prototype.kill = function() {
// TODO: Implement Callback
let data = {
action : "stop"
}
this.request(data);
};
module.exports = CiderCastController;