diff --git a/src/main.rs b/src/main.rs index 7e2210b..91b90fc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,11 +13,12 @@ struct Args { } fn main() { - let args = Args::parse(); - println!("{:?}", args); - - let mut source = File::open(args.input).unwrap(); - let dest = Path::new(&args.output); + // let args = Args::parse(); + // println!("{:?}", args); - uncompress_archive(&mut source, &dest, Ownership::Preserve).unwrap(); + let config_location = cyber_mod_manager::get_config_location(); + let steam_location = cyber_mod_manager::get_steam_location(); + + println!("Config: {}", config_location); + println!("Steam: {}", steam_location); }