mirror of
https://github.com/Dangoware/dmp-core.git
synced 2025-04-19 09:42:53 -05:00
Added #![allow(unused)]
This commit is contained in:
parent
c842bf0b9c
commit
3c93110037
2 changed files with 3 additions and 3 deletions
|
@ -1,3 +1,5 @@
|
|||
#![allow(unused)]
|
||||
|
||||
pub mod music_storage {
|
||||
pub mod library;
|
||||
pub mod music_collection;
|
||||
|
|
|
@ -22,9 +22,7 @@ use crate::music_storage::library::{Tag, URI};
|
|||
use crate::music_storage::playlist::Playlist;
|
||||
use crate::{
|
||||
music_player::Player,
|
||||
music_storage::{
|
||||
library::{MusicLibrary, Song}
|
||||
},
|
||||
music_storage::library::{MusicLibrary, Song},
|
||||
config::config::Config,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue