Store latest successfully fetched data in struct

master
Elis Hirwing 2017-11-04 10:37:59 +01:00
parent 2864ac8788
commit fb3a958aa3
Signed by: etu
GPG Key ID: D57EFA625C9A925F
2 changed files with 9 additions and 3 deletions

View File

@ -13,7 +13,8 @@ import (
// SL is my SL struct
type SL struct {
Config *Config
Config *Config
lastResponse SLResponse
}
// SLResponse is a struct to get the interesting data from API Responses
@ -54,11 +55,16 @@ func (sl *SL) GetOutput() string {
sldata, err := sl.getTimeTable()
// If no error occured, save the latest data to the struct
if err == nil {
sl.lastResponse = sldata
}
if err != nil {
log.Fatal(err)
}
for _, v := range sldata.ResponseData.Metros {
for _, v := range sl.lastResponse.ResponseData.Metros {
table.Append([]string{
v.LineNumber,
v.Destination,

View File

@ -11,7 +11,7 @@ import (
func main() {
config := getConfig("status.toml")
sl := statusscreen.SL{&config}
sl := statusscreen.SL{Config: &config}
fmt.Println(sl.GetOutput())
}