ready for release

This commit is contained in:
mykola2312 2023-09-11 01:27:04 +03:00
parent b5a73fb148
commit 34af300dbd

View file

@ -19,8 +19,8 @@ struct Cli {
input: String,
// Specify save file or ent file type
#[arg(value_enum)]
kind: Kind,
//#[arg(value_enum)]
//kind: Kind,
/// Output file path
#[arg(short, long)]
@ -395,11 +395,5 @@ fn do_save(cli: Cli) {
fn main() {
let cli = Cli::parse();
match cli.kind {
Kind::Save => do_save(cli),
Kind::Ent => todo!(),
}
//let mut save = Save::load(Path::new(save_path)).expect("load save");
//save.save(Path::new(out_path)).expect("failed to save");
do_save(cli);
}