mirror of
https://github.com/Dangoware/dango-music-player.git
synced 2025-04-19 10:02:53 -05:00
Merge branch 'main' of https://github.com/Dangoware/dmp-core
This commit is contained in:
commit
e706d232d6
3 changed files with 11 additions and 1 deletions
|
@ -35,4 +35,4 @@ m3u8-rs = "5.0.5"
|
||||||
thiserror = "1.0.56"
|
thiserror = "1.0.56"
|
||||||
font = "0.27.0"
|
font = "0.27.0"
|
||||||
uuid = { version = "1.6.1", features = ["v4", "serde"]}
|
uuid = { version = "1.6.1", features = ["v4", "serde"]}
|
||||||
serde_json = "1.0.111"
|
serde_json = "1.0.111"
|
|
@ -10,9 +10,11 @@ pub mod music_storage {
|
||||||
|
|
||||||
pub mod music_controller{
|
pub mod music_controller{
|
||||||
pub mod controller;
|
pub mod controller;
|
||||||
|
pub mod connections;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub mod music_player;
|
pub mod music_player;
|
||||||
|
#[allow(clippy::module_inception)]
|
||||||
pub mod config {
|
pub mod config {
|
||||||
pub mod config;
|
pub mod config;
|
||||||
pub mod other_settings;
|
pub mod other_settings;
|
||||||
|
|
8
src/music_controller/connections.rs
Normal file
8
src/music_controller/connections.rs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
use std::{env, thread, time};
|
||||||
|
|
||||||
|
use super::controller::Controller;
|
||||||
|
|
||||||
|
|
||||||
|
impl Controller {
|
||||||
|
//more stuff goes here
|
||||||
|
}
|
Loading…
Reference in a new issue