-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce a mechanism to generate protobuf
We leverage go generate, the protobuf compiler, and shell to take the proto files (in each directory), and then spit out *.pb.go files which is our generated code.
- v2.1.0
- v2.0.1
- v2.0.0
- v2.0.0-m7
- v2.0.0-m6
- v2.0.0-m5
- v2.0.0-m4
- v2.0.0-m3
- v2.0.0-m3-rc
- v2.0.0-m2
- v2.0.0-m1
- v1.21.0
- v1.3.1
- v1.3.0
- v1.3.0-rc.4
- v1.3.0-rc.3
- v1.3.0-rc.2
- v1.3.0-rc.1
- v1.3.0-rc
- v1.2.4-rc
- v.1.2.3-rc
- v1.2.2
- v1.2.1
- v1.2.0
- v1.2.0-rc.1
- v1.2.0-rc
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1-rc
- v1.1.0-rc
- v1.0.1
- v0.14.1-rc
- v0.14.0-rc
- v0.13.0-rc
- v0.12.0-rc
- v0.11.0-rc
- v0.10.0
- v0.9.1
- v0.9.0
- v0.8.0
- v0.7.0
- v0.6.0
- v0.5.0
- v0.4.0
- v0.3.0
- v0.2.0
- token-dashboard/v1.20.0
- token-dashboard/v1.19.1
- token-dashboard/v1.19.0
- token-dashboard/v1.18.0
- token-dashboard/v1.17.1
- token-dashboard/v1.17.0
- token-dashboard/v1.16.2
- token-dashboard/v1.16.1
- token-dashboard/v1.16.0
- token-dashboard/v1.15.3
- token-dashboard/v1.15.2
- token-dashboard/v1.15.1
- token-dashboard/v1.15.0
- token-dashboard/v1.14.0
- token-dashboard/v1.13.0
- token-dashboard/v1.12.1
- token-dashboard/v1.12.0
- token-dashboard/v1.11.0
- token-dashboard/v1.10.2
- token-dashboard/v1.10.1
- token-dashboard/v1.10.0
- token-dashboard/v1.9.0
- token-dashboard/v1.8.1
- token-dashboard/v1.8.0
- token-dashboard/v1.7.2
- token-dashboard/v1.7.1
- token-dashboard/v1.7.0
- token-dashboard/v1.6.0
- token-dashboard/v1.5.0
- token-dashboard/v1.4.1
- token-dashboard/v1.4.0
- token-dashboard/v1.3.3
- token-dashboard/v1.3.2
- token-dashboard/v1.3.1
- token-dashboard/v1.3.0
- token-dashboard/v1.3.0-rc.1
- solidity/v2.0.1
- solidity/v2.0.0
- solidity/v1.7.0
- solidity/v1.6.0
- solidity/v1.5.0
- solidity/v1.4.1
- solidity/v1.4.0
- solidity/v1.3.0
- solidity/v1.3.0-rc.1
Raghav Gulati
committed
Mar 23, 2018
1 parent
2290a08
commit 1bcb6f7
Showing
1 changed file
with
3 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package types | ||
|
||
//go:generate sh -c "protoc --proto_path=$GOPATH/src:. --gogoslick_out=. */*.proto" |