You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
460 B

  1. // Package config provides the internal representation of Blubber
  2. // configuration parsed from YAML. Each configuration type may implement
  3. // its own hooks for injecting build instructions into the compiler.
  4. //
  5. package config
  6. // Config holds the root fields of a Blubber configuration.
  7. //
  8. type Config struct {
  9. CommonConfig `json:",inline"`
  10. Variants map[string]VariantConfig `json:"variants" validate:"variants,dive"`
  11. VersionConfig `json:",inline"`
  12. }