Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jprobinson committed Jul 8, 2017
1 parent a39b723 commit 541d9ce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -20,7 +20,7 @@ install: deps

lint: testdeps
go get -v github.com/golang/lint/golint
for file in $$(find . -name '*.go' | grep -v '\.pb\.go\|\.pb\.gw\.go\|examples\|pubsub\/aws\/awssub_test\.go'); do \
for file in $$(find . -name '*.go' | grep -v '\.pb\.go\|\.pb\.gw\.go\|examples\|pubsub\/aws\/awssub_test\.go' | grep -v 'server\/kit\/kitserver_pb_test\.go'); do \
golint $${file}; \
if [ -n "$$(golint $${file})" ]; then \
exit 1; \
Expand Down
4 changes: 4 additions & 0 deletions examples/servers/kit/api/service.go
Expand Up @@ -73,6 +73,10 @@ func (s service) HTTPEndpoints() map[string]map[string]kit.HTTPEndpoint {
}
}

func (s service) RPCMiddleware() grpc.UnaryServerInterceptor {
return nil
}

func (s service) RPCOptions() []grpc.ServerOption {
return nil
}
Expand Down

0 comments on commit 541d9ce

Please sign in to comment.