type Config struct {
Period time.Duration `config:"period"`
Regions []Region `config:"regions"`
AppId string `config:"appid"`
MaxApiCalls int `config:"maxApiCalls"`
}
type Region struct {
Enabled bool `config:"enabled"`
Name string `config:"name"`
Description string `config:"description"`
LonLeft int `config:"lon-left"`
LatBottom int `config:"lat-bottom"`
LonRight int `config:"lon-right"`
LatTop int `config:"lat-top"`
Zoom int `config:"zoom"`
}