blob: ba9804caaf36f2a80b90156473b7d9291b91dcc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package gitpb
// 'make generate' will call this
//
// go generate is a cool feature. many thanks to the GO dev team
//
// NOTE: please add to go generate: if ! exists go.mod, run 'go mod init' & 'go mod tidy'
//
//go:generate make go-generate
//go:generate autogenpb --proto repo.proto
//go:generate autogenpb --proto goDep.proto
//go:generate autogenpb --proto gitTag.proto
//go:generate autogenpb --proto stat.proto
//go:generate bash -c "goimports -w *.go"
|