create config file

This commit is contained in:
SadlyNotSappho 2023-07-25 15:21:29 -07:00
parent 81cc929595
commit 315d3b735e
1 changed files with 3 additions and 1 deletions

View File

@ -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"));
}