prowocessing: apply most basic reviews
This commit is contained in:
parent
734a734f09
commit
b7bc0366c2
6 changed files with 46 additions and 42 deletions
|
@ -27,7 +27,7 @@ enum Commands {
|
|||
},
|
||||
Dev {
|
||||
#[command(subcommand)]
|
||||
dev_command: DevCommands,
|
||||
command: DevCommands,
|
||||
},
|
||||
}
|
||||
|
||||
|
@ -50,7 +50,9 @@ fn main() {
|
|||
machine.feed(ir);
|
||||
machine.eval_full();
|
||||
}
|
||||
Commands::Dev { dev_command } => dev_command.run(),
|
||||
Commands::Dev {
|
||||
command: dev_command,
|
||||
} => dev_command.run(),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue