summaryrefslogtreecommitdiff
path: root/internal/cache/cache.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cache/cache.go')
-rw-r--r--internal/cache/cache.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/cache/cache.go b/internal/cache/cache.go
index ed13aded4..1d2d0533b 100644
--- a/internal/cache/cache.go
+++ b/internal/cache/cache.go
@@ -20,6 +20,6 @@ package cache
// Cache defines an in-memory cache that is safe to be wiped when the application is restarted
type Cache interface {
- Store(k string, v interface{}) error
- Fetch(k string) (interface{}, error)
+ Store(k string, v interface{}) error
+ Fetch(k string) (interface{}, error)
}