mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-07-13 17:12:05 -04:00
* bump dependencies Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> * bump reva and add config options Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> --------- Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
35 lines
653 B
Go
35 lines
653 B
Go
package config
|
|
|
|
import (
|
|
"go-micro.dev/v4/config/loader"
|
|
"go-micro.dev/v4/config/reader"
|
|
"go-micro.dev/v4/config/source"
|
|
)
|
|
|
|
// WithLoader sets the loader for manager config.
|
|
func WithLoader(l loader.Loader) Option {
|
|
return func(o *Options) {
|
|
o.Loader = l
|
|
}
|
|
}
|
|
|
|
// WithSource appends a source to list of sources.
|
|
func WithSource(s source.Source) Option {
|
|
return func(o *Options) {
|
|
o.Source = append(o.Source, s)
|
|
}
|
|
}
|
|
|
|
// WithReader sets the config reader.
|
|
func WithReader(r reader.Reader) Option {
|
|
return func(o *Options) {
|
|
o.Reader = r
|
|
}
|
|
}
|
|
|
|
func WithWatcherDisabled() Option {
|
|
return func(o *Options) {
|
|
o.WithWatcherDisabled = true
|
|
}
|
|
}
|