gouick/helpers/models/config.go
Matthieu 'JP' DERASSE 48b1739576
Some checks failed
continuous-integration/drone/push Build is failing
feat(init): Start implementing system config
2022-08-04 10:39:24 +00:00

20 lines
679 B
Go

package models
// Config structure represent the main configuration of the project.
type Config struct {
ProjectName string `yaml:"project_name"`
ProjectDescription string `yaml:"project_description"`
ProjectOwner string `yaml:"project_owner"`
Features FeaturesConfig `yaml:"features"`
}
// FeaturesConfig structure represent the configuration of all possible features.
type FeaturesConfig struct {
DatabaseModels DatabaseModelsConfig `yaml:"database_models"`
}
// DatabaseModelsConfig structure represent the configuration of the Database Models feature.
type DatabaseModelsConfig struct {
Enabled bool `yaml:"enabled"`
}