subsonic-tui/internal/playback/desktop.go

11 lines
157 B
Go
Raw Normal View History

package playback
type DesktopPlayback interface {
Start()
Stop() error
OnPlayPause()
OnPlaylistChanged()
OnSongChanged()
OnPositionChanged(sec int)
}