(matches: &ArgMatches)
| 107 | } |
| 108 | |
| 109 | fn parse_crontab_command(matches: &ArgMatches) -> Result<CliCommand, CliError> { |
| 110 | Ok(CliCommand::Crontab { |
| 111 | schedule: parse_string("schedule", matches)?, |
| 112 | }) |
| 113 | } |
| 114 | |
| 115 | fn parse_delegation_command(matches: &ArgMatches) -> Result<CliCommand, CliError> { |
| 116 | match matches.subcommand() { |
no test coverage detected