From 93a00956ce5d8c3d5bdf5ecfca6855a395e267c5 Mon Sep 17 00:00:00 2001 From: Gilles Castel Date: Mon, 7 Oct 2019 23:19:45 +0200 Subject: [PATCH] Fix play.rs example --- examples/play.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/play.rs b/examples/play.rs index 4aa73033..87f68825 100644 --- a/examples/play.rs +++ b/examples/play.rs @@ -4,10 +4,10 @@ extern crate tokio_core; use std::env; use tokio_core::reactor::Core; -use librespot::librespot_core::authentication::Credentials; -use librespot::librespot_core::config::SessionConfig; -use librespot::librespot_core::session::Session; -use librespot::librespot_core::spotify_id::SpotifyId; +use librespot::core::authentication::Credentials; +use librespot::core::config::SessionConfig; +use librespot::core::session::Session; +use librespot::core::spotify_id::SpotifyId; use librespot::playback::config::PlayerConfig; use librespot::playback::audio_backend;