Skip to content

Commit

Permalink
Merge pull request #7 from TRON-US/serverstatus
Browse files Browse the repository at this point in the history
add shared.proto for share and guard.proto
  • Loading branch information
Junlin Gao authored Oct 25, 2019
2 parents e821dde + 6d52243 commit 17cc2d3
Show file tree
Hide file tree
Showing 6 changed files with 1,947 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

.DS_Store
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
default: lintf

PROTO_FILES=./protos/node/node.proto \
./protos/guard/guard.proto \
./protos/shared/shared.proto \
./protos/escrow/escrow.proto \
./protos/ledger/ledger.proto \
# ./protos/status/status.proto \
# ./protos/guard/guard.proto \


install:
brew install protobuf
brew install prototool
Expand All @@ -16,8 +19,7 @@ lintf:
prototool format -w

build: lintf
# TODO: fix and use prototool all instead
for proto in $(PROTO_FILES); \
do \
eval protoc --go_out=plugins=grpc:. $$proto ; \
eval protoc -I. --go_out=plugins=grpc:. $$proto ; \
done
Loading

0 comments on commit 17cc2d3

Please sign in to comment.