blob: 5153d8329f369c73ef0af4f2eadc76a78610dafd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package virtpb
// 'make generate' will call this
//
// NOTE: it would be helpful if go.mod doesn't exist, that "go generate"
// automatically run go mod init and go mod tidy
// then this process could be fully automated
//
//go:generate make go-generate
//go:generate go get go.wit.com/apps/autogenpb
//go:generate go install -v go.wit.com/apps/autogenpb
//go:generate autogenpb --proto hypervisor.proto
//go:generate autogenpb --proto cluster.proto
//go:generate autogenpb --proto droplet.proto
//go:generate autogenpb --proto event.proto
//go:generate bash -c "goimports -w *.go"
|