go-cache/cache.go

8 lines
147 B
Go

package gocache
type Cache interface {
Get(key string) (interface{}, error)
Set(key string, data interface{}) error
Remove(key string) error
}