untested hm module

This commit is contained in:
Reid 2024-09-11 15:29:00 -07:00
parent ae824fcb47
commit 289b8ad095
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
6 changed files with 101 additions and 19 deletions

View file

@ -6,8 +6,15 @@ use std::io::Write;
use std::process;
use tracing::info;
// okay i don't like this.
// we have to please the ini parser though!!
#[derive(Deserialize)]
pub struct Config {
pub global: GlobalConfig
}
#[derive(Deserialize)]
pub struct GlobalConfig {
pub player_bus: Option<String>,
pub username: String,
pub password: String,