c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
10 lines
170 B
Protocol Buffer
10 lines
170 B
Protocol Buffer
// Copyright 2019 Google LLC.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
syntax = "proto3";
|
|
package example;
|
|
|
|
message Thing {
|
|
string id = 1;
|
|
string kind_of_thing = 2;
|
|
}
|