34 lines
561 B
Go
34 lines
561 B
Go
package auth
|
|
|
|
type Options struct {
|
|
Providers []Provider
|
|
SessionName string
|
|
}
|
|
|
|
type OptionFunc func(opts *Options)
|
|
|
|
func NewOptions(funcs ...OptionFunc) *Options {
|
|
opts := &Options{
|
|
Providers: make([]Provider, 0),
|
|
SessionName: "clearcase_auth",
|
|
}
|
|
|
|
for _, fn := range funcs {
|
|
fn(opts)
|
|
}
|
|
|
|
return opts
|
|
}
|
|
|
|
func WithProviders(providers ...Provider) OptionFunc {
|
|
return func(opts *Options) {
|
|
opts.Providers = providers
|
|
}
|
|
}
|
|
|
|
func WithSessionName(sessionName string) OptionFunc {
|
|
return func(opts *Options) {
|
|
opts.SessionName = sessionName
|
|
}
|
|
}
|