mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-05 01:10:12 -05:00
Merge pull request #16 from nikos912000/more-options-when-creating-new-configuration
More options when creating new configuration
This commit is contained in:
commit
c259e352b3
6
.gitignore
vendored
6
.gitignore
vendored
@ -23,3 +23,9 @@ _testmain.go
|
||||
*.test
|
||||
*.prof
|
||||
.vscode
|
||||
|
||||
# OS generated files
|
||||
.DS_Store
|
||||
|
||||
# IDEA files
|
||||
**/.idea
|
@ -55,12 +55,17 @@ type Configuration struct {
|
||||
}
|
||||
|
||||
// NewConfiguration create new configuration
|
||||
func NewConfiguration(basePath string) *Configuration {
|
||||
func NewConfiguration(basePath string, options ...func(*Configuration)) *Configuration {
|
||||
cfg := &Configuration{
|
||||
BasePath: basePath,
|
||||
DefaultHeader: make(map[string]string),
|
||||
UserAgent: "go-bitbucket/1.0.0/go",
|
||||
}
|
||||
|
||||
for _, option := range options {
|
||||
option(cfg)
|
||||
}
|
||||
|
||||
return cfg
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user