element.go 109 B

12345678
  1. package cache
  2. type Element interface {
  3. Marshal() ([]byte, error)
  4. Unmarshal([]byte) error
  5. Key() string
  6. }