diff options
Diffstat (limited to '')
-rw-r--r-- | tools/print-cache/print-cache.go | 4 |
1 files changed, 2 insertions, 2 deletions
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) } |