(
&self,
_request: Request<ListSandboxesRequest>,
)
| 3041 | } |
| 3042 | |
| 3043 | async fn list_sandboxes( |
| 3044 | &self, |
| 3045 | _request: Request<ListSandboxesRequest>, |
| 3046 | ) -> Result<Response<ListSandboxesResponse>, Status> { |
| 3047 | Ok(Response::new(ListSandboxesResponse { |
| 3048 | sandboxes: self.current_snapshots().await, |
| 3049 | })) |
| 3050 | } |
| 3051 | |
| 3052 | async fn stop_sandbox( |
| 3053 | &self, |
nothing calls this directly
no test coverage detected