chore: linting

This commit is contained in:
Cristian Vidmar 2024-04-29 15:41:52 +02:00
parent 54c71081a9
commit 5738aee97c

View File

@ -1,10 +1,10 @@
package config package config
type Config struct { type Config struct {
SpaceID string `yaml:"spaceId,omitempty"` SpaceID string `json:"spaceId,omitempty" yaml:"spaceId,omitempty"`
Environment string `yaml:"environment,omitempty"` Environment string `json:"environment,omitempty" yaml:"environment,omitempty"`
ExportFile string `yaml:"exportFile,omitempty"` ExportFile string `json:"exportFile,omitempty" yaml:"exportFile,omitempty"`
ContentTypes []string `yaml:"contentTypes,omitempty"` ContentTypes []string `json:"contentTypes,omitempty" yaml:"contentTypes,omitempty"`
PathTargetPackage string `yaml:"pathTargetPackage,omitempty"` PathTargetPackage string `json:"pathTargetPackage,omitempty" yaml:"pathTargetPackage,omitempty"`
RequireVersion string `yaml:"requireVersion,omitempty"` RequireVersion string `json:"requireVersion,omitempty" yaml:"requireVersion,omitempty"`
} }