(
&self,
_request: tonic::Request<HealthRequest>,
)
| 34 | #[tonic::async_trait] |
| 35 | impl OpenShell for TestOpenShell { |
| 36 | async fn health( |
| 37 | &self, |
| 38 | _request: tonic::Request<HealthRequest>, |
| 39 | ) -> Result<Response<HealthResponse>, Status> { |
| 40 | Ok(Response::new(HealthResponse { |
| 41 | status: ServiceStatus::Healthy.into(), |
| 42 | version: "test".to_string(), |
| 43 | })) |
| 44 | } |
| 45 | |
| 46 | async fn create_sandbox( |
| 47 | &self, |
no outgoing calls
no test coverage detected