6730cb7227
- Seperate the config from File() - Add YAML tags for the fields
10 lines
229 B
Go
10 lines
229 B
Go
package config
|
|
|
|
type OEM struct {
|
|
ID string `yaml:"id"`
|
|
Name string `yaml:"name"`
|
|
VersionID string `yaml:"version-id"`
|
|
HomeURL string `yaml:"home-url"`
|
|
BugReportURL string `yaml:"bug-report-url"`
|
|
}
|