blob: 9786acc42a80230328f2398c03ba00d37e7cd306 [file] [log] [blame]
// Copyright 2019 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 test_platform.skylab_local_state;
option go_package = "go.chromium.org/chromiumos/infra/proto/go/test_platform/skylab_local_state";
// AutotestHostInfo defines the structure of the host info file which is used
// to pass host information to Autotest and receive host information
// changes from Autotest.
message AutotestHostInfo {
map<string, string> attributes = 1;
repeated string labels = 2;
int32 serializer_version = 3 [json_name = "serializer_version"];
}