8 lines
212 B
Go
8 lines
212 B
Go
|
package main
|
||
|
|
||
|
type Config struct {
|
||
|
Globals map[interface{}]interface{} `yaml:"globals"`
|
||
|
TemplateDir string `yaml:"templates"`
|
||
|
TargetDir string `yaml:"target"`
|
||
|
}
|