From 3ffb899951ce642d0ce1d26b2810336a92c58662 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Wed, 8 Jul 2020 14:53:38 +0100 Subject: [PATCH] Fix cache options --- cache/cache.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cache/cache.go b/cache/cache.go index 872aacec..4ec14ba8 100644 --- a/cache/cache.go +++ b/cache/cache.go @@ -14,4 +14,6 @@ type Cache interface { String() string } -type Option struct{} +type Options struct{} + +type Option func(o *Options)