mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-21 15:26:29 +00:00
13 lines
272 B
Go
13 lines
272 B
Go
package database
|
|
|
|
import "time"
|
|
|
|
type KeyValueStore interface {
|
|
Close() error
|
|
|
|
Get(key string) ([]byte, error)
|
|
Set(key string, value []byte, ttl time.Duration) error
|
|
Increment(key string) (int, error)
|
|
Delete(key string) error
|
|
Keys(prefix string) ([]string, error)
|
|
}
|