1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-07-12 22:41:07 +02:00

add ability to set address

This commit is contained in:
Asim Aslam
2019-02-11 18:37:25 +00:00
parent 78b7ee9078
commit a3ecd36763

View File

@ -122,6 +122,13 @@ func Transport(t transport.Transport) Option {
// Convenience options // Convenience options
// Address sets the address of the server
func Address(addr string) Option {
return func(o *Options) {
o.Server.Init(server.Address(addr))
}
}
// Name of the service // Name of the service
func Name(n string) Option { func Name(n string) Option {
return func(o *Options) { return func(o *Options) {