24 lines
362 B
Go
24 lines
362 B
Go
package main
|
|
|
|
// Config is a struct with my config
|
|
type Config struct {
|
|
SL struct {
|
|
APIKey string
|
|
RefreshDelay int64
|
|
SiteID int
|
|
APIURL string
|
|
}
|
|
Clock struct {
|
|
TimeFormat string
|
|
}
|
|
Weather struct {
|
|
URL string
|
|
RefreshDelay int64
|
|
}
|
|
Pollen struct {
|
|
URL string
|
|
RefreshDelay int64
|
|
CityName string
|
|
}
|
|
}
|