chore: Remove toml prefix from CliConfig::{load,dump}_toml

Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
Awiteb
2025-06-07 19:01:53 +00:00
parent a6a61aedf1
commit 53a2eb5bda
5 changed files with 6 additions and 6 deletions

View File

@@ -67,5 +67,5 @@ pub fn parse_config_path(config_path: &str) -> N34Result<CliConfig> {
path = super::defaults::config_path()?;
};
CliConfig::load_toml(path)
CliConfig::load(path)
}