mirror of
https://github.com/Dangoware/dmp-core.git
synced 2025-04-19 13:22:54 -05:00
s
This commit is contained in:
parent
7c5a9c282b
commit
03c8d67b5e
3 changed files with 12 additions and 0 deletions
|
@ -36,3 +36,4 @@ 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"
|
||||||
|
discord-presence = "0.5.18"
|
|
@ -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;
|
||||||
|
|
9
src/music_controller/connections.rs
Normal file
9
src/music_controller/connections.rs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
use std::{env, thread, time};
|
||||||
|
use discord_presence::{Client, Event};
|
||||||
|
|
||||||
|
use super::controller::Controller;
|
||||||
|
|
||||||
|
|
||||||
|
impl Controller {
|
||||||
|
//more stuff goes here
|
||||||
|
}
|
Loading…
Reference in a new issue