├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── examples └── main.go ├── go.mod ├── go.sum └── spotify ├── spotify.go └── spotify_test.go /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapito/go-spotify/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapito/go-spotify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapito/go-spotify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapito/go-spotify/HEAD/README.md -------------------------------------------------------------------------------- /examples/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapito/go-spotify/HEAD/examples/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapito/go-spotify/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapito/go-spotify/HEAD/go.sum -------------------------------------------------------------------------------- /spotify/spotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapito/go-spotify/HEAD/spotify/spotify.go -------------------------------------------------------------------------------- /spotify/spotify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapito/go-spotify/HEAD/spotify/spotify_test.go --------------------------------------------------------------------------------