Files
opencloud/pkg/server/debug/option.go
Jörn Friedrich Dreyer 4eabdad540 Revert "update ocis-pkg to v2.0.1 and micro/cli to v2"
This reverts commit 83c820e6a7.
2020-02-10 12:22:42 +01:00

51 lines
963 B
Go

package debug
import (
"context"
"github.com/owncloud/ocis-phoenix/pkg/config"
"github.com/owncloud/ocis-pkg/log"
)
// Option defines a single option function.
type Option func(o *Options)
// Options defines the available options for this package.
type Options struct {
Logger log.Logger
Context context.Context
Config *config.Config
}
// newOptions initializes the available default options.
func newOptions(opts ...Option) Options {
opt := Options{}
for _, o := range opts {
o(&opt)
}
return opt
}
// Logger provides a function to set the logger option.
func Logger(val log.Logger) Option {
return func(o *Options) {
o.Logger = val
}
}
// Context provides a function to set the context option.
func Context(val context.Context) Option {
return func(o *Options) {
o.Context = val
}
}
// Config provides a function to set the config option.
func Config(val *config.Config) Option {
return func(o *Options) {
o.Config = val
}
}