-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from josephlr/proto
Regenerate tpm.pb.go
- Loading branch information
Showing
8 changed files
with
215 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Package proto contains protocol buffers that are exchanged between the client | ||
// and server. Note, some of these types have additional helper methods. | ||
// | ||
// Generating Protocol Buffer Code | ||
// | ||
// Anytime the Protocol Buffer defintions change, the generated Go code must be | ||
// regenerated. This can be done with "go generate". Just run: | ||
// go generate ./... | ||
// | ||
// Alternatively, you can manually invoke protoc yourself. In the root of this project, run: | ||
// protoc --go_out=. --go_opt=module=github.com/google/go-tpm-tools **/*.proto | ||
// | ||
// Upstream documentation: | ||
// https://developers.google.com/protocol-buffers/docs/reference/go-generated | ||
// | ||
// Code Generation Dependencies | ||
// | ||
// To generate the Go code, your system must have "protoc" installed. See: | ||
// https://github.com/protocolbuffers/protobuf#protocol-compiler-installation | ||
// | ||
// The "protoc-gen-go" tool must also be installed. To install it, run: | ||
// go install google.golang.org/protobuf/cmd/protoc-gen-go | ||
package proto | ||
|
||
//go:generate protoc --go_out=. --go_opt=module=github.com/google/go-tpm-tools/proto tpm.proto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.