aboutsummaryrefslogtreecommitdiff
path: root/internal/caching/caches.go
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2020-06-12 11:07:26 +0100
committerGitHub <noreply@github.com>2020-06-12 11:07:26 +0100
commit079d8fe8fb521f76fee3bff5b47482d5fb911257 (patch)
tree964aacf3bdf2182a61eac14cd0e5e8e75187f7b7 /internal/caching/caches.go
parentec7718e7f842fa0fc5198489c904de21003db4c2 (diff)
More key tweaks (#1116)
Diffstat (limited to 'internal/caching/caches.go')
-rw-r--r--internal/caching/caches.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/caching/caches.go b/internal/caching/caches.go
index 70f380ba..419623e2 100644
--- a/internal/caching/caches.go
+++ b/internal/caching/caches.go
@@ -12,4 +12,5 @@ type Caches struct {
type Cache interface {
Get(key string) (value interface{}, ok bool)
Set(key string, value interface{})
+ Unset(key string)
}