diff --git a/spotify_player/src/cli/client.rs b/spotify_player/src/cli/client.rs
index d1bad134..b1cc0786 100644
--- a/spotify_player/src/cli/client.rs
+++ b/spotify_player/src/cli/client.rs
@@ -14,15 +14,12 @@ use crate::{
cli::Request,
client::{Client, PlayerRequest},
config::get_cache_folder_path,
- state::{Context, ContextId, Playback, PlaybackMetadata, SharedState},
-};
-use rspotify::{
- model::{
- AlbumId, ArtistId, CurrentPlaybackContext, Id, PlayableId, PlaylistId, SearchResult,
- SearchType, TrackId,
+ state::{
+ AlbumId, ArtistId, Context, ContextId, Id, PlayableId, Playback, PlaybackMetadata,
+ PlaylistId, SharedState, TrackId,
},
- prelude::{BaseClient, OAuthClient},
};
+use rspotify::prelude::{BaseClient, OAuthClient};
use super::{
Command, Deserialize, GetRequest, IdOrName, ItemId, ItemType, Key, PlaylistCommand, Response,
@@ -96,7 +93,7 @@ async fn send_response(
async fn current_playback(
client: &Client,
state: Option<&SharedState>,
-) -> Result