diff options
Diffstat (limited to 'internal/caching/caches.go')
-rw-r--r-- | internal/caching/caches.go | 1 |
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) } |