mirror of
https://github.com/foomo/gocontentful.git
synced 2025-10-16 12:25:39 +00:00
11 lines
577 B
Go
11 lines
577 B
Go
package config
|
|
|
|
type Config struct {
|
|
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"`
|
|
}
|