f31b17b5f1cfb6626e7256b1a78ab6b219403a3d
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
Version Wrapper
The version wrapper is a stateful client wrapper which gives you a ability to select only latest version services. That suitable for easy upgrade running services without downtime.
Usage
Pass in the wrapper when you create your service
wrapper := version.NewClientWrapper()
service := micro.NewService(
micro.Name("foo"),
micro.WrapClient(wrapper),
)
Languages
Go
100%