(grpcCtx context.Context, in *proto.SandboxID)
| 48 | } |
| 49 | |
| 50 | func (w *WnApiServer) DeleteSandbox(grpcCtx context.Context, in *proto.SandboxID) (*proto.ActionStatus, error) { |
| 51 | return w.workerNode.SandboxRuntime.DeleteSandbox(grpcCtx, in) |
| 52 | } |
| 53 | |
| 54 | func (w *WnApiServer) ListEndpoints(grpcCtx context.Context, in *emptypb.Empty) (*proto.EndpointsList, error) { |
| 55 | return w.workerNode.SandboxRuntime.ListEndpoints(grpcCtx, in) |
nothing calls this directly
no test coverage detected