diff options
Diffstat (limited to 'config.go')
-rw-r--r-- | config.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -11,15 +11,15 @@ type CompCfg struct { URL string `yaml:"URL"` } -type Suite struct { +type SuiteCfg struct { Name string `yaml:"Name"` Components []CompCfg `yaml:"Components"` } type ReleaseCfg struct { - Release string `yaml:"Release"` - RepoURL string `yaml:"RepoURL"` - Suites []Suite `yaml:"Suites"` + Release string `yaml:"Release"` + RepoURL string `yaml:"RepoURL"` + Suites []SuiteCfg `yaml:"Suites"` } type PkgwebCfg struct { |