(
&self,
_request: tonic::Request<openshell_core::proto::WatchSandboxRequest>,
)
| 302 | >; |
| 303 | |
| 304 | async fn watch_sandbox( |
| 305 | &self, |
| 306 | _request: tonic::Request<openshell_core::proto::WatchSandboxRequest>, |
| 307 | ) -> Result<Response<Self::WatchSandboxStream>, Status> { |
| 308 | let (_tx, rx) = mpsc::channel(1); |
| 309 | Ok(Response::new(tokio_stream::wrappers::ReceiverStream::new( |
| 310 | rx, |
| 311 | ))) |
| 312 | } |
| 313 | |
| 314 | async fn exec_sandbox( |
| 315 | &self, |
no outgoing calls
no test coverage detected