UNPKG

covilbot

Version:

Slack bot which connects with Mopidy and Spotify

13 lines (12 loc) 288 B
module.exports = { command: 'clear', desc: 'Clears the tracklist', aliases: ['clean'], handler: function (argv) { argv.db.logger.info('Clearing current tracklist') argv.db.mopidy.tracklist.clear() .done(function () { argv.db.emit('tracklist:clear') }) } }