Store when last successful refresh happened

master
Elis Hirwing 2017-11-04 10:44:46 +01:00
parent fb3a958aa3
commit 2e8dd49a56
Signed by: etu
GPG Key ID: D57EFA625C9A925F
1 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ import (
type SL struct {
Config *Config
lastResponse SLResponse
lastRefresh int64
}
// SLResponse is a struct to get the interesting data from API Responses
@ -58,6 +59,7 @@ func (sl *SL) GetOutput() string {
// If no error occured, save the latest data to the struct
if err == nil {
sl.lastResponse = sldata
sl.lastRefresh = time.Now().Unix()
}
if err != nil {