Documentation
¶
Index ¶
Constants ¶
View Source
const ( TypeDir = "dir" TypeFile = "file" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
ProjectName string `yaml:"projectName"`
Language string `yaml:"language"`
Structure []StructureNode `yaml:"structure"`
}
func LoadConfigFromYaml ¶
type StructureNode ¶
type StructureNode struct {
Type string `yaml:"type"`
Name string `yaml:"name"`
Children []StructureNode `yaml:"children,omitempty"`
}
Click to show internal directories.
Click to hide internal directories.