(options: ServiceLaunchOptions)
| 2707 | } |
| 2708 | |
| 2709 | fn start_detached_service(options: ServiceLaunchOptions) -> anyhow::Result<()> { |
| 2710 | let (metadata, started) = ensure_project_service_with_status(options)?; |
| 2711 | print_service_start_result(&metadata, started) |
| 2712 | } |
| 2713 | |
| 2714 | fn restart_detached_service(options: ServiceLaunchOptions) -> anyhow::Result<()> { |
| 2715 | if service::active()?.is_some() { |
no test coverage detected