1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-17 17:44:30 +02:00
2021-10-12 12:55:53 +01:00

13 lines
172 B
Go

package cache
import (
"time"
"go-micro.dev/v4/registry/cache"
)
// WithTTL sets the cache TTL
func WithTTL(t time.Duration) cache.Option {
return cache.WithTTL(t)
}