mirror of
https://github.com/Dangoware/dango-music-player.git
synced 2025-04-19 10:02:53 -05:00
23 lines
442 B
Rust
23 lines
442 B
Rust
#![allow(while_true)]
|
|
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 library_command;
|
|
pub mod player_command;
|
|
pub mod player_monitor;
|
|
pub mod queue;
|
|
pub mod queue_command;
|
|
}
|
|
|
|
pub mod config;
|