statusscreen/src/statusscreen/Config.go

19 lines
285 B
Go

package statusscreen
// 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
}
}