summaryrefslogtreecommitdiff
path: root/go/internal/config/config.go
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2018-08-28 10:37:07 +0200
committerNick Thomas <nick@gitlab.com>2018-09-28 04:24:52 +0100
commit1f8556b2f86d7954f86f4a9a58f586a838f8ae21 (patch)
tree79fd8ba537a8073b0b9b32cabc39dcd4cafe258f /go/internal/config/config.go
parent1cc2993f357c4467e4d45c54c01d2307103efb3e (diff)
downloadgitlab-shell-1f8556b2f86d7954f86f4a9a58f586a838f8ae21.tar.gz
Initial feature-flagged go/ruby switch
Diffstat (limited to 'go/internal/config/config.go')
-rw-r--r--go/internal/config/config.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/go/internal/config/config.go b/go/internal/config/config.go
index 7d521f5..64822c7 100644
--- a/go/internal/config/config.go
+++ b/go/internal/config/config.go
@@ -14,9 +14,10 @@ const (
)
type Config struct {
- RootDir string
- LogFile string `yaml:"log_file"`
- LogFormat string `yaml:"log_format"`
+ RootDir string
+ LogFile string `yaml:"log_file"`
+ LogFormat string `yaml:"log_format"`
+ Experimental bool `yaml:"experimental"`
}
func New() (*Config, error) {