PlayerDevices will return a list of available Spotify devices. An error is returned if encountered.
()
| 24 | |
| 25 | // PlayerDevices will return a list of available Spotify devices. An error is returned if encountered. |
| 26 | func (sc *SpotifyClient) PlayerDevices() ([]spotify.PlayerDevice, error) { |
| 27 | return sc.client.PlayerDevices() |
| 28 | } |
| 29 | |
| 30 | |
| 31 | // Pause will pause playback for the currently active device. |
nothing calls this directly
no test coverage detected