summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorKatolaZ <katolaz@freaknet.org>2018-01-17 10:40:57 +0000
committerKatolaZ <katolaz@freaknet.org>2018-01-17 10:40:57 +0000
commit28255b5f4d41d0fface2d60ab49c29998e004e56 (patch)
tree30fc6e794e1b32cb6c09800223b0b267b9fb5b91 /config.go
parent91a0ea7f4fa5befa4b491bfd9380e5b8c1f0f7e7 (diff)
first parallel version
Diffstat (limited to 'config.go')
-rw-r--r--config.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.go b/config.go
index c71d287..72a5665 100644
--- a/config.go
+++ b/config.go
@@ -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 {