| 12 | } |
| 13 | |
| 14 | type Client interface { |
| 15 | PlayerDevices() ([]spotify.PlayerDevice, error) |
| 16 | Pause() error |
| 17 | TransferPlayback(deviceID spotify.ID, play bool) error |
| 18 | PlayOpt(opt *spotify.PlayOptions) error |
| 19 | } |
| 20 | |
| 21 | type SpotifyClient struct { |
| 22 | client *spotify.Client |
no outgoing calls
no test coverage detected