v1.2.0 Gold Monkey
GRPC Handler
- the
GRPCHandler
now acceptshttp.Handler
instead of*grpcServer
as its first argument. This is not a breaking change, as the*grpc.Server
fulfills thehttp.Handler
interface. commit
func GRPCHandler(server http.Handler, selectors ...Selector) Handler { }
Multiplexer
- Added
HandlerFactory
type that is used by all handler creators. Creators can thus be passed separately and built from services in projects (docs needed) commit