mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 08:50:13 -05:00
Add more options to NewConfiguration using functional options.
This commit is contained in:
parent
a65c6ca5d4
commit
0d7bd0b4df
@ -55,12 +55,17 @@ type Configuration struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// NewConfiguration create new configuration
|
// NewConfiguration create new configuration
|
||||||
func NewConfiguration(basePath string) *Configuration {
|
func NewConfiguration(basePath string, options ...func(*Configuration)) *Configuration {
|
||||||
cfg := &Configuration{
|
cfg := &Configuration{
|
||||||
BasePath: basePath,
|
BasePath: basePath,
|
||||||
DefaultHeader: make(map[string]string),
|
DefaultHeader: make(map[string]string),
|
||||||
UserAgent: "go-bitbucket/1.0.0/go",
|
UserAgent: "go-bitbucket/1.0.0/go",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for _, option := range options {
|
||||||
|
option(cfg)
|
||||||
|
}
|
||||||
|
|
||||||
return cfg
|
return cfg
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user