blob: a562744d51487f5e1f1db429209c5bfea408a754 [file] [log] [blame]
// Copyright 2019 The Flutter 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 = "proto2";
package cocoon;
enum EnumBuildStatus {
success = 1;
failure = 2;
}
message BuildStatusResponse {
optional EnumBuildStatus build_status = 1;
repeated string failing_tasks = 2;
}