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
/
pause.js
9 lines
(8 loc)
•
194 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module
.
exports
= {
command
:
'pause'
,
desc
:
'Puses the current track'
,
handler
:
function
(
argv
) { argv.
db
.
logger
.
info
(
'Pausing current track'
) argv.
db
.
mopidy
.
playback
.
pause
() } }