feat(example): Add an example for how to use buildGo builders

This commit is contained in:
Vincent Ambo 2019-11-24 20:34:30 +00:00
parent d441e035aa
commit 071babf148
4 changed files with 84 additions and 0 deletions

10
example/thing.proto Normal file
View file

@ -0,0 +1,10 @@
// Copyright 2019 Google LLC.
// SPDX-License-Identifier: Apache-2.0
syntax = "proto3";
package exampleProto;
message Thing {
string id = 1;
string kind_of_thing = 2;
}