13 lines
148 B
Go
13 lines
148 B
Go
package cache
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// WithTTL sets the cache TTL
|
|
func WithTTL(t time.Duration) Option {
|
|
return func(o *Options) {
|
|
o.TTL = t
|
|
}
|
|
}
|