feat(init): continue on template
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Matthieu 'JP' DERASSE
2022-08-10 15:40:37 +00:00
parent cf7901890c
commit 05ecb05132
17 changed files with 325 additions and 24 deletions

View File

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

View File

@@ -3,7 +3,7 @@ package models
// UserInputParams is a struct containing all fields that can be useful for project generation.
type UserInputParams struct {
DatabaseModels bool
GoModuleName *string
GoModulePath *string
ProjectDescription string
ProjectDirectory string
ProjectName string