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