(
&self,
request: Request<ExecSandboxRequest>,
)
| 278 | |
| 279 | #[rpc_auth(auth = "bearer", scope = "sandbox:write", role = "user")] |
| 280 | async fn exec_sandbox( |
| 281 | &self, |
| 282 | request: Request<ExecSandboxRequest>, |
| 283 | ) -> Result<Response<Self::ExecSandboxStream>, Status> { |
| 284 | sandbox::handle_exec_sandbox(&self.state, request).await |
| 285 | } |
| 286 | |
| 287 | type ForwardTcpStream = |
| 288 | Pin<Box<dyn tokio_stream::Stream<Item = Result<TcpForwardFrame, Status>> + Send + 'static>>; |
nothing calls this directly
no test coverage detected