add CLI flag to set stop after current

This commit is contained in:
Drew Weymouth
2025-08-08 08:16:33 -07:00
parent d6ad0de122
commit 30ee5deb9c
5 changed files with 41 additions and 22 deletions
+8
View File
@@ -48,6 +48,14 @@ func (c *Client) PlayPause() error {
return c.sendRequest(PlayPausePath)
}
func (c *Client) Stop() error {
return c.sendRequest(StopPath)
}
func (c *Client) StopAfterCurrent() error {
return c.sendRequest(StopAfterCurrentPath)
}
func (c *Client) SeekNext() error {
return c.sendRequest(NextPath)
}