diff options
author | KatolaZ <katolaz@freaknet.org> | 2018-01-17 10:40:57 +0000 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2018-01-17 10:40:57 +0000 |
commit | 28255b5f4d41d0fface2d60ab49c29998e004e56 (patch) | |
tree | 30fc6e794e1b32cb6c09800223b0b267b9fb5b91 /config.go | |
parent | 91a0ea7f4fa5befa4b491bfd9380e5b8c1f0f7e7 (diff) |
first parallel version
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 { |