Files
QSfera/ocis-graph-explorer/pkg/server/debug/option.go
T
A.Unger 6cfbec91e2 Add 'ocis-graph-explorer/' from commit '85a7df32eafb7b6c76f81155cbda054233d8b5a7'
git-subtree-dir: ocis-graph-explorer
git-subtree-mainline: 8146241777
git-subtree-split: 85a7df32ea
2021-02-04 12:06:48 +01:00

51 lines
973 B
Go

package debug
import (
"context"
"github.com/owncloud/ocis-graph-explorer/pkg/config"
"github.com/owncloud/ocis-pkg/v2/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
}
}