(matches: &ArgMatches)
| 150 | } |
| 151 | |
| 152 | fn parse_initialize_command(matches: &ArgMatches) -> Result<CliCommand, CliError> { |
| 153 | Ok(CliCommand::Initialize { |
| 154 | mint: parse_pubkey("mint", matches)?, |
| 155 | }) |
| 156 | } |
| 157 | |
| 158 | fn parse_pool_command(matches: &ArgMatches) -> Result<CliCommand, CliError> { |
| 159 | match matches.subcommand() { |
no test coverage detected