mirror of
https://github.com/Dangoware/dango-music-player.git
synced 2025-04-19 10:02:53 -05:00
18 lines
326 B
Rust
18 lines
326 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 connections;
|
|
pub mod controller;
|
|
pub mod controller_handle;
|
|
pub mod queue;
|
|
}
|
|
|
|
pub mod config;
|