diff --git a/Cargo.toml b/Cargo.toml index 70c70e1..9c8d51a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,4 +35,4 @@ m3u8-rs = "5.0.5" thiserror = "1.0.56" font = "0.27.0" uuid = { version = "1.6.1", features = ["v4", "serde"]} -serde_json = "1.0.111" +serde_json = "1.0.111" \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index 2c479ae..3119019 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,9 +10,11 @@ pub mod music_storage { 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; diff --git a/src/music_controller/connections.rs b/src/music_controller/connections.rs new file mode 100644 index 0000000..86d8f29 --- /dev/null +++ b/src/music_controller/connections.rs @@ -0,0 +1,8 @@ +use std::{env, thread, time}; + +use super::controller::Controller; + + +impl Controller { + //more stuff goes here +}