diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-08-22 14:26:29 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-08-22 15:18:33 +0200 |
commit | 8f3a9f1e2f0c9e066d2e3894b9fc2d054d2f148e (patch) | |
tree | 520d24514b66022dbcce3c804adec6d41f038565 /internal/feed/cache_v1.go | |
parent | eb2b7b872bf70343e6f15c8cbd6ed0fc3e6bfaa7 (diff) | |
download | feed2imap-go-8f3a9f1e2f0c9e066d2e3894b9fc2d054d2f148e.tar.gz feed2imap-go-8f3a9f1e2f0c9e066d2e3894b9fc2d054d2f148e.tar.bz2 feed2imap-go-8f3a9f1e2f0c9e066d2e3894b9fc2d054d2f148e.zip |
Lock cache
Diffstat (limited to 'internal/feed/cache_v1.go')
-rw-r--r-- | internal/feed/cache_v1.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/feed/cache_v1.go b/internal/feed/cache_v1.go index 656c133..a80e81c 100644 --- a/internal/feed/cache_v1.go +++ b/internal/feed/cache_v1.go @@ -157,7 +157,7 @@ func newV1Cache() *v1Cache { return &cache } -func (cache *v1Cache) transformToCurrent() (Cache, error) { +func (cache *v1Cache) transformToCurrent() (CacheImpl, error) { return cache, nil } |