(
&self,
request: Request<DeleteServiceRequest>,
)
| 341 | |
| 342 | #[rpc_auth(auth = "bearer", scope = "sandbox:write", role = "user")] |
| 343 | async fn delete_service( |
| 344 | &self, |
| 345 | request: Request<DeleteServiceRequest>, |
| 346 | ) -> Result<Response<DeleteServiceResponse>, Status> { |
| 347 | service::handle_delete_service(&self.state, request).await |
| 348 | } |
| 349 | |
| 350 | #[rpc_auth(auth = "bearer", scope = "sandbox:write", role = "user")] |
| 351 | async fn revoke_ssh_session( |
nothing calls this directly
no test coverage detected