Damien Neil | 1adaec9 | 2018-09-24 13:43:03 -0700 | [diff] [blame] | 1 | // Copyright 2018 The Go Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style | ||||
3 | // license that can be found in the LICENSE file. | ||||
4 | |||||
5 | // The protoc-gen-go binary is a protoc plugin to generate a Go protocol | ||||
6 | // buffer package. | ||||
7 | package main | ||||
8 | |||||
9 | import ( | ||||
10 | "github.com/golang/protobuf/v2/cmd/protoc-gen-go/internal_gengo" | ||||
11 | ) | ||||
12 | |||||
13 | func main() { | ||||
14 | internal_gengo.Main() | ||||
15 | } |