(
&self,
request: Request<CreateSandboxRequest>,
)
| 208 | |
| 209 | #[rpc_auth(auth = "bearer", scope = "sandbox:write", role = "user")] |
| 210 | async fn create_sandbox( |
| 211 | &self, |
| 212 | request: Request<CreateSandboxRequest>, |
| 213 | ) -> Result<Response<SandboxResponse>, Status> { |
| 214 | sandbox::handle_create_sandbox(&self.state, request).await |
| 215 | } |
| 216 | |
| 217 | type WatchSandboxStream = ReceiverStream<Result<SandboxStreamEvent, Status>>; |
| 218 |
no test coverage detected