We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f3a594 commit 3ce2211Copy full SHA for 3ce2211
examples/play.rs
@@ -5,12 +5,13 @@ use std::env;
5
use tokio_core::reactor::Core;
6
7
use librespot::core::authentication::Credentials;
8
-use librespot::playback::config::{PlayerConfig, SessionConfig};
+use librespot::core::config::SessionConfig;
9
+use librespot::playback::config::PlayerConfig;
10
use librespot::core::session::Session;
11
use librespot::core::spotify_id::SpotifyId;
12
-use librespot::audio_backend;
13
-use librespot::player::Player;
+use librespot::playback::audio_backend;
14
+use librespot::playback::player::Player;
15
16
fn main() {
17
let mut core = Core::new().unwrap();
0 commit comments