Fix cache options

This commit is contained in:
Asim Aslam 2020-07-08 14:53:38 +01:00
parent 00bd2bc65f
commit 3ffb899951
1 changed files with 3 additions and 1 deletions

4
cache/cache.go vendored
View File

@ -14,4 +14,6 @@ type Cache interface {
String() string
}
type Option struct{}
type Options struct{}
type Option func(o *Options)