yaxc/internal/server/backend.go

11 lines
145 B
Go
Raw Normal View History

2021-03-24 23:11:23 +08:00
package server
import (
"time"
)
type Backend interface {
Get(key string) (string, error)
Set(key, value string, ttl time.Duration) error
}