diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2021-02-22 23:06:39 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2021-02-22 23:06:39 +0100 |
commit | bf5001fe2b4d5417e4419cc2195754371fcef03c (patch) | |
tree | 51903344a24ab7b5bec54dd2a70d82cffa507366 /tools/print-cache | |
parent | 7106d5a6e7585dce5fdd552cca30063dd352dc23 (diff) | |
download | feed2imap-go-bf5001fe2b4d5417e4419cc2195754371fcef03c.tar.gz feed2imap-go-bf5001fe2b4d5417e4419cc2195754371fcef03c.tar.bz2 feed2imap-go-bf5001fe2b4d5417e4419cc2195754371fcef03c.zip |
Improve naming
Diffstat (limited to 'tools/print-cache')
-rw-r--r-- | tools/print-cache/print-cache.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/print-cache/print-cache.go b/tools/print-cache/print-cache.go index b3be0bf..c00bf51 100644 --- a/tools/print-cache/print-cache.go +++ b/tools/print-cache/print-cache.go @@ -22,7 +22,7 @@ func init() { func main() { flag.Parse() - cache, err := cache.LoadCache(cacheFile) + cache, err := cache.Load(cacheFile) if err != nil { log.Fatal(err) } |