Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Instance ¶
type Instance interface {
// Key returns a unique identifier for the instance.
Key() string
// List returns the list of available songs, possibly cached.
List() (SongList, error)
// Refresh forces an update of the song list.
Refresh() (SongList, error)
// Info returns information about one song.
Info(codec.ID) (*codec.SongInfo, error)
// GetSong returns a playable song.
GetSong(codec.ID) (codec.Song, error)
}
Click to show internal directories.
Click to hide internal directories.