package storage
import "errors"
var (
// ErrDataNotExist 数据不存在
ErrDataNotExist = errors.New("data not exist")
)