(
&self,
_request: Request<WatchSandboxesRequest>,
)
| 302 | } |
| 303 | |
| 304 | async fn watch_sandboxes( |
| 305 | &self, |
| 306 | _request: Request<WatchSandboxesRequest>, |
| 307 | ) -> Result<Response<Self::WatchSandboxesStream>, Status> { |
| 308 | self.with_state(|state| state.calls.push(FakeComputeDriverCall::WatchSandboxes)); |
| 309 | Ok(Response::new(Box::pin(stream::empty()))) |
| 310 | } |
| 311 | } |
nothing calls this directly
no test coverage detected