prowocessing: apply most basic reviews

This commit is contained in:
Schrottkatze 2024-07-08 20:48:56 +02:00
parent 734a734f09
commit b7bc0366c2
Signed by: schrottkatze
SSH key fingerprint: SHA256:hXb3t1vINBFCiDCmhRABHX5ocdbLiKyCdKI4HK2Rbbc
6 changed files with 46 additions and 42 deletions

View file

@ -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(),
}
}