mirror of
https://github.com/Dangoware/dmp-core.git
synced 2025-04-20 09:42:53 -05:00
22 lines
384 B
Rust
22 lines
384 B
Rust
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 queue;
|
|
}
|
|
|
|
pub mod music_player;
|
|
#[allow(clippy::module_inception)]
|
|
pub mod config {
|
|
pub mod config;
|
|
pub mod other_settings;
|
|
}
|