key.go 91 B

12345678
  1. package cache
  2. import "time"
  3. type Key interface {
  4. TTL() time.Duration
  5. String() string
  6. }