Skip to content

Commit

Permalink
Remove enum type prefix (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexshtin authored Apr 4, 2020
1 parent 9cd0cc5 commit 5b3dcd0
Show file tree
Hide file tree
Showing 19 changed files with 1,101 additions and 1,179 deletions.
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
.PHONY: grpc clean grpc-install
$(VERBOSE).SILENT:

# default target
default: all-install all

# List only subdirectories with *.proto files.
# sort to remove duplicates.
ifndef GOPATH
GOPATH := $(shell go env GOPATH)
endif

PROTO_ROOT := temporal-proto
# List only subdirectories with *.proto files. Sort to remove duplicates.
PROTO_DIRS = $(sort $(dir $(wildcard $(PROTO_ROOT)/*/*.proto)))
PROTO_SERVICES = $(wildcard $(PROTO_ROOT)/*/service.proto)
PROTO_OUT := .
PROTO_IMPORT := $(PROTO_ROOT)
PROTO_IMPORT := $(PROTO_ROOT):$(GOPATH)/src/github.com/gogo/protobuf

all: update-proto-submodule grpc grpc-mock copyright gomodtidy

Expand Down
150 changes: 75 additions & 75 deletions common/enum.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion common/message.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5b3dcd0

Please sign in to comment.