mirror of
https://github.com/foomo/posh.git
synced 2025-10-16 12:45:38 +00:00
13 lines
241 B
Go
13 lines
241 B
Go
package cache
|
|
|
|
import (
|
|
"github.com/c-bata/go-prompt"
|
|
)
|
|
|
|
type Namespace interface {
|
|
Get(key string, cb func() interface{}) interface{}
|
|
Keys() []string
|
|
Delete(key string)
|
|
GetSuggests(key string, cb func() interface{}) []prompt.Suggest
|
|
}
|