(grpcCtx context.Context, in *proto.ServiceInfo)
| 44 | } |
| 45 | |
| 46 | func (w *WnApiServer) CreateSandbox(grpcCtx context.Context, in *proto.ServiceInfo) (*proto.SandboxCreationStatus, error) { |
| 47 | return w.workerNode.SandboxRuntime.CreateSandbox(grpcCtx, in) |
| 48 | } |
| 49 | |
| 50 | func (w *WnApiServer) DeleteSandbox(grpcCtx context.Context, in *proto.SandboxID) (*proto.ActionStatus, error) { |
| 51 | return w.workerNode.SandboxRuntime.DeleteSandbox(grpcCtx, in) |
nothing calls this directly
no test coverage detected