diff --git a/pkg/cache/cache.go b/pkg/cache/cache.go index 531ae76..16530b1 100644 --- a/pkg/cache/cache.go +++ b/pkg/cache/cache.go @@ -14,7 +14,7 @@ type ( Get(context.Context, string, interface{}) error Set(context.Context, string, interface{}, time.Duration) error Clear(context.Context, string) error - Expire(context.Context, string) error + Expire(context.Context, string, time.Duration) error } )