media: fix crate path

merge-requests/7/merge
Alexandre Janniaux 2019-11-15 13:21:45 +01:00
parent 8ccb60ef9a
commit b4346a2573
1 changed files with 4 additions and 4 deletions

View File

@ -2,10 +2,10 @@
// This file is part of vlc-rs. // This file is part of vlc-rs.
// Licensed under the MIT license, see the LICENSE file. // Licensed under the MIT license, see the LICENSE file.
use sys; use crate::sys;
use ::{Instance, EventManager}; use crate::{Instance, EventManager};
use ::enums::{State, Meta, TrackType}; use crate::enums::{State, Meta, TrackType};
use ::tools::{to_cstr, from_cstr, path_to_cstr}; use crate::tools::{to_cstr, from_cstr, path_to_cstr};
use std::path::Path; use std::path::Path;
pub struct Media { pub struct Media {