(
&self,
_request: Request<ListSandboxesRequest>,
)
| 1441 | } |
| 1442 | |
| 1443 | async fn list_sandboxes( |
| 1444 | &self, |
| 1445 | _request: Request<ListSandboxesRequest>, |
| 1446 | ) -> Result<Response<ListSandboxesResponse>, Status> { |
| 1447 | Ok(Response::new(ListSandboxesResponse { |
| 1448 | sandboxes: self.current_snapshots().await?, |
| 1449 | })) |
| 1450 | } |
| 1451 | |
| 1452 | async fn create_sandbox( |
| 1453 | &self, |
nothing calls this directly
no test coverage detected