aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/cache.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/feed/cache.go')
-rw-r--r--internal/feed/cache.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/feed/cache.go b/internal/feed/cache.go
index 4a0bfe7..735a7d6 100644
--- a/internal/feed/cache.go
+++ b/internal/feed/cache.go
@@ -6,6 +6,7 @@ import (
"errors"
"fmt"
"os"
+ "time"
"github.com/Necoro/feed2imap-go/pkg/log"
)
@@ -25,6 +26,7 @@ type Cache interface {
type CachedFeed interface {
Checked(withFailure bool)
Failures() uint
+ Last() time.Time
}
func cacheForVersion(version Version) (Cache, error) {