mirror of
https://github.com/Dangoware/dmp-core.git
synced 2025-04-19 09:52:54 -05:00
23 lines
384 B
Rust
23 lines
384 B
Rust
#![allow(unused)]
|
|
|
|
pub mod music_storage {
|
|
pub mod library;
|
|
pub mod music_collection;
|
|
pub mod playlist;
|
|
mod utils;
|
|
|
|
#[allow(dead_code)]
|
|
pub mod db_reader;
|
|
}
|
|
|
|
pub mod music_controller{
|
|
pub mod controller;
|
|
pub mod connections;
|
|
}
|
|
|
|
pub mod music_player;
|
|
#[allow(clippy::module_inception)]
|
|
pub mod config {
|
|
pub mod config;
|
|
pub mod other_settings;
|
|
}
|