blob: 6cc04dc673ab10d9229b311471d287daaf03797e [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
option go_package = "go.chromium.org/luci/dm/api/distributor/jobsim";
package jobsim;
// Result is the jobsim distributor result object used for executions.
message Result {
bool success = 1;
int64 value = 2;
}