cache.go 131 B

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