cache.go 130 B

1234567
  1. package interfaces
  2. type Cache interface {
  3. Get(key string) (interface{}, bool)
  4. Set(key string, value interface{})
  5. FlushAll()
  6. }