UNPKG
covilbot
Version:
beta (1.0.5)
latest (0.3.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.3.5
Slack bot which connects with Mopidy and Spotify
github.com/100hz/fireworkweb
fireworkweb/covilbot
covilbot
/
lib
/
commands
/
next.js
10 lines
(9 loc)
•
226 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
module
.exports = { command:
'next'
, desc:
'Plays the next track from the tracklist'
, aliases: [
'skip'
], handler:
function
(argv)
{ argv.db.logger.info(
'Playing next track'
) argv.db.mopidy.playback.
next
() } }