(
options: ServiceLaunchOptions,
)
| 1256 | } |
| 1257 | |
| 1258 | fn ensure_project_service_with_status( |
| 1259 | options: ServiceLaunchOptions, |
| 1260 | ) -> anyhow::Result<(ServiceMetadata, bool)> { |
| 1261 | ensure_singleton_service_with_status(options) |
| 1262 | } |
| 1263 | |
| 1264 | fn ensure_singleton_service(options: ServiceLaunchOptions) -> anyhow::Result<ServiceMetadata> { |
| 1265 | Ok(ensure_singleton_service_with_status(options)?.0) |
no test coverage detected