10 lines
107 B
Go
Raw Normal View History

2025-02-24 16:48:20 +08:00
package cachingdomain
import "time"
type CacheSpec struct {
Key string
TTL time.Duration
Data any
}