summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
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 {