This commit is contained in:
G2-Games 2024-01-23 22:21:37 -06:00
commit e706d232d6
3 changed files with 11 additions and 1 deletions

View file

@ -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"

View file

@ -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;

View file

@ -0,0 +1,8 @@
use std::{env, thread, time};
use super::controller::Controller;
impl Controller {
//more stuff goes here
}