From 071babf14824aee035dd6c3ddff1957662aa7c98 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 24 Nov 2019 20:34:30 +0000 Subject: feat(example): Add an example for how to use buildGo builders --- example/thing.proto | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 example/thing.proto (limited to 'example/thing.proto') diff --git a/example/thing.proto b/example/thing.proto new file mode 100644 index 0000000000..0cb34124df --- /dev/null +++ b/example/thing.proto @@ -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; +} -- cgit 1.4.1