feat(config): Write and read config + refacto
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Matthieu 'JP' DERASSE
2022-08-05 14:20:00 +00:00
parent 2304a11465
commit 645344fa5c
8 changed files with 75 additions and 24 deletions

View File

@ -5,6 +5,8 @@ type Config struct {
ProjectName string `yaml:"project_name"`
ProjectDescription string `yaml:"project_description"`
ProjectOwner string `yaml:"project_owner"`
ProjectType APITypeName `yaml:"project_type"`
ModuleName *string `yaml:"module_name"`
Features FeaturesConfig `yaml:"features"`
}