blob: 0199e9030960b372c9ab8d7567e0c1fba31e4ebf [file] [log] [blame]
// Copyright 2019 The Fuchsia 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 infra.example; // <- starlark import path
option go_package = "recipes";
message Example {
message FieldA {
int64 value = 1;
}
FieldA field_a = 1;
}