From 7106d5a6e7585dce5fdd552cca30063dd352dc23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Mon, 22 Feb 2021 22:54:43 +0100 Subject: Split cache and feed packages --- tools/print-cache/print-cache.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/print-cache/print-cache.go b/tools/print-cache/print-cache.go index cdecac4..b3be0bf 100644 --- a/tools/print-cache/print-cache.go +++ b/tools/print-cache/print-cache.go @@ -5,7 +5,7 @@ import ( "fmt" "log" - "github.com/Necoro/feed2imap-go/internal/feed" + "github.com/Necoro/feed2imap-go/internal/feed/cache" ) // flags @@ -22,7 +22,7 @@ func init() { func main() { flag.Parse() - cache, err := feed.LoadCache(cacheFile) + cache, err := cache.LoadCache(cacheFile) if err != nil { log.Fatal(err) } -- cgit v1.2.3