blob: 919e3d161a4ede34a958b34f615a33362dc7578f [file] [log] [blame]
Damien Neil1adaec92018-09-24 13:43:03 -07001// 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.
7package main
8
9import (
10 "github.com/golang/protobuf/v2/cmd/protoc-gen-go/internal_gengo"
11)
12
13func main() {
14 internal_gengo.Main()
15}