diff options
author | 2021-03-11 14:30:14 +0100 | |
---|---|---|
committer | 2021-03-11 14:30:14 +0100 | |
commit | c558681f021dc0ebe77a6a72e22e9a92ce5d482d (patch) | |
tree | 85bd89aabe47c3b0f77ba9380ca6f1b858015560 /internal/cache/cache.go | |
parent | building out media req/resp model (diff) | |
download | gotosocial-c558681f021dc0ebe77a6a72e22e9a92ce5d482d.tar.xz |
start adding mastodon api types
Diffstat (limited to 'internal/cache/cache.go')
-rw-r--r-- | internal/cache/cache.go | 4 |
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) } |