(action: NoCommandAction)
| 2657 | } |
| 2658 | |
| 2659 | fn run_no_command_action(action: NoCommandAction) -> anyhow::Result<()> { |
| 2660 | match action { |
| 2661 | NoCommandAction::Service(options) => run_default_service(options), |
| 2662 | } |
| 2663 | } |
| 2664 | |
| 2665 | fn run_default_service(options: DefaultServiceLaunchOptions) -> anyhow::Result<()> { |
| 2666 | let selector = options.selector; |
no test coverage detected