2025-02-24 16:48:20 +08:00

10 lines
107 B
Go

package cachingdomain
import "time"
type CacheSpec struct {
Key string
TTL time.Duration
Data any
}