weather/types.go

16 lines
328 B
Go
Raw Normal View History

2019-07-07 13:09:55 +02:00
package main
// WeatherConfig is the main configuration
type WeatherConfig struct {
OwmURL string
OwmAppID string
OwmCities []string
OwmMeasurements []string
OwmTable string
InfluxHost string
InfluxPort int
InfluxUser string
InfluxPass string
InfluxDB string
}