| 12 | #[derive(Debug, StructOpt)] |
| 13 | #[structopt(name = "blockchain_rust")] |
| 14 | struct Opt { |
| 15 | #[structopt(subcommand)] |
| 16 | command: Command, |
| 17 | } |
| 18 | |
| 19 | #[derive(StructOpt, Debug)] |
| 20 | enum Command { |
nothing calls this directly
no outgoing calls
no test coverage detected