This commit is contained in:
MrDulfin 2024-01-22 14:06:13 -05:00
parent 7c5a9c282b
commit 03c8d67b5e
3 changed files with 12 additions and 0 deletions

View file

@ -36,3 +36,4 @@ thiserror = "1.0.56"
font = "0.27.0"
uuid = { version = "1.6.1", features = ["v4", "serde"]}
serde_json = "1.0.111"
discord-presence = "0.5.18"

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,9 @@
use std::{env, thread, time};
use discord_presence::{Client, Event};
use super::controller::Controller;
impl Controller {
//more stuff goes here
}