diff --git a/src/main.rs b/src/main.rs index 91b90fc..879ef1b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ -use std::{path::Path, fs::File}; +use std::{path::Path, fs::{File, self}}; use clap::Parser; use compress_tools::*; @@ -21,4 +21,6 @@ fn main() { println!("Config: {}", config_location); println!("Steam: {}", steam_location); + + cyber_mod_manager::create_config(&format!("{config_location}/CyberModManager/config.json")); }