diff --git a/utils/cache.go b/utils/cache.go index 2757f38..eb993de 100644 --- a/utils/cache.go +++ b/utils/cache.go @@ -34,5 +34,5 @@ func (c *Cache) Get(key string) (interface{}, bool) { return nil, false } - return &data, true + return data, true }