cfgen/config_file.go

8 lines
212 B
Go
Raw Permalink Normal View History

2022-09-18 19:28:34 +02:00
package main
type Config struct {
Globals map[interface{}]interface{} `yaml:"globals"`
TemplateDir string `yaml:"templates"`
TargetDir string `yaml:"target"`
}