(
&self,
request: Request<CreateSshSessionRequest>,
)
| 309 | |
| 310 | #[rpc_auth(auth = "bearer", scope = "sandbox:write", role = "user")] |
| 311 | async fn create_ssh_session( |
| 312 | &self, |
| 313 | request: Request<CreateSshSessionRequest>, |
| 314 | ) -> Result<Response<CreateSshSessionResponse>, Status> { |
| 315 | sandbox::handle_create_ssh_session(&self.state, request).await |
| 316 | } |
| 317 | |
| 318 | #[rpc_auth(auth = "bearer", scope = "sandbox:write", role = "user")] |
| 319 | async fn expose_service( |
no test coverage detected