use lcode_config::{
config::{LcodeConfig, user_nested::Suffix},
global::G_USER_CONFIG,
};
use miette::Result;
#[test]
fn serde_conf_work() -> Result<()> {
LcodeConfig::gen_config(Suffix::Cn)?;
let a = toml::to_string(&*G_USER_CONFIG).unwrap();
println!("{}", a);
Ok(())
}