v0.3.2
Changed
-
Changed the approach to the builders, the public API now being endpoint-oriented.
Getting an album with the optional
market
parameter set:// before let album = spotify.get_album(AlbumQuery::new("id").market("GB")).await?; // after let album = spotify.album("id").market("RO").get().await?;