blob: 29dbce075e3c867ec288bf1ae85daabb717d4b4f [file] [log] [blame]
// Copyright 2020 The Chromium OS 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";
package prototype;
option go_package = "go.chromium.org/chromiumos/infra/proto/go/prototype";
import "prototype/client.proto";
import "prototype/client_profile.proto";
import "prototype/milestone.proto";
message ConfigBundle {
repeated Client clients = 1;
repeated ClientProfile client_profiles = 2;
repeated Milestone milestones = 3;
}