You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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 |
|
} |
|
}
|
|
|