use std::path::PathBuf;
use serde::Deserialize;
#[derive(Default, Debug, Deserialize)]
pub struct Config {
pub users: Vec<UserEntry>,
pub root_dir: Option<PathBuf>,
}
#[derive(Debug, Deserialize, Clone)]
pub struct UserEntry {
pub username: String,
pub password: String,
}