mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-18 08:26:38 +02:00
18 lines
232 B
Go
18 lines
232 B
Go
package http
|
|
|
|
import (
|
|
"go-micro.dev/v5/registry"
|
|
)
|
|
|
|
type Options struct {
|
|
Registry registry.Registry
|
|
}
|
|
|
|
type Option func(*Options)
|
|
|
|
func WithRegistry(r registry.Registry) Option {
|
|
return func(o *Options) {
|
|
o.Registry = r
|
|
}
|
|
}
|