mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-17 17:44:30 +02:00
13 lines
172 B
Go
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)
|
|
}
|