mirror of
https://github.com/darmiel/yaxc.git
synced 2024-11-15 12:25:19 +08:00
13 lines
236 B
Go
13 lines
236 B
Go
package server
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Backend interface {
|
|
Get(key string) (string, error)
|
|
Set(key, value string, ttl time.Duration) error
|
|
|
|
GetHash(key string) (string, error)
|
|
SetHash(key, value string, ttl time.Duration) error
|
|
}
|