blob: 0cebf3443496208dda57ffe259e84ff1420f356b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package config
type Map map[string]interface{}
type Config struct {
GlobalConfig Map
}
type Options struct {
MinFreq int `yaml:"min-frequency"`
InclImages *bool `yaml:"include-images"`
}
|