use anyhow::Result;
use std::error::Error;
use std::path::PathBuf;

pub fn parse_user(name: &String, items: &Vec<String>, path: &PathBuf, verbose: bool) -> Result<()> {
    let _ = (name, items, path, verbose);
    Ok(())
}

pub fn set_verbose(enabled: bool) {
    let _ = enabled;
}

pub fn load_all() -> std::result::Result<(), Box<dyn Error>> {
    Ok(())
}