Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
This commit is contained in:
Frank Villaro-Dixon 2024-05-19 22:45:41 +02:00
parent 15f5d8dc3c
commit a1428eafdb

View file

@ -9,7 +9,7 @@ enum SpotifyMenuState {
Playlist(String), // (name Playlist(String), // (name
} }
#[derive(Debug, Default)] #[derive(Debug)]
pub struct Spotify { pub struct Spotify {
i: i32, i: i32,
state: SpotifyMenuState, state: SpotifyMenuState,
@ -21,7 +21,6 @@ impl Spotify {
i: 0, i: 0,
state: SpotifyMenuState::Root, state: SpotifyMenuState::Root,
} }
Self::default()
} }
} }