Go-kit example: support services without unary calls

This commit is contained in:
Manfred Touron
2016-12-26 16:20:46 +01:00
parent cdb9580565
commit 877e93aa7c
3 changed files with 9 additions and 1 deletions

View File

@@ -10,7 +10,9 @@ import (
"github.com/go-kit/kit/endpoint"
)
var _ = endpoint.Chain
var _ = fmt.Errorf
var _ = context.Background
type StreamEndpoint func(server interface{}, req interface{}) (err error)