From 3ce22113cf09c5b34fe4ad7df3b1461f918ec651 Mon Sep 17 00:00:00 2001 From: akosel Date: Thu, 22 Feb 2018 06:24:04 -0600 Subject: [PATCH] Fix example use declarations (#160) --- examples/play.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/play.rs b/examples/play.rs index 2c0b3282..4dd8601c 100644 --- a/examples/play.rs +++ b/examples/play.rs @@ -5,12 +5,13 @@ use std::env; use tokio_core::reactor::Core; use librespot::core::authentication::Credentials; -use librespot::playback::config::{PlayerConfig, SessionConfig}; +use librespot::core::config::SessionConfig; +use librespot::playback::config::PlayerConfig; use librespot::core::session::Session; use librespot::core::spotify_id::SpotifyId; -use librespot::audio_backend; -use librespot::player::Player; +use librespot::playback::audio_backend; +use librespot::playback::player::Player; fn main() { let mut core = Core::new().unwrap();