diff --git a/config/vo.go b/config/vo.go index 9036cfc..7a37ca2 100644 --- a/config/vo.go +++ b/config/vo.go @@ -1,10 +1,10 @@ package config type Config struct { - SpaceID string `yaml:"spaceId,omitempty"` - Environment string `yaml:"environment,omitempty"` - ExportFile string `yaml:"exportFile,omitempty"` - ContentTypes []string `yaml:"contentTypes,omitempty"` - PathTargetPackage string `yaml:"pathTargetPackage,omitempty"` - RequireVersion string `yaml:"requireVersion,omitempty"` + SpaceID string `json:"spaceId,omitempty" yaml:"spaceId,omitempty"` + Environment string `json:"environment,omitempty" yaml:"environment,omitempty"` + ExportFile string `json:"exportFile,omitempty" yaml:"exportFile,omitempty"` + ContentTypes []string `json:"contentTypes,omitempty" yaml:"contentTypes,omitempty"` + PathTargetPackage string `json:"pathTargetPackage,omitempty" yaml:"pathTargetPackage,omitempty"` + RequireVersion string `json:"requireVersion,omitempty" yaml:"requireVersion,omitempty"` }