22 lines
350 B
Go
22 lines
350 B
Go
|
package kvimpexp
|
||
|
|
||
|
import (
|
||
|
"encoding/base64"
|
||
|
|
||
|
"github.com/hashicorp/consul/api"
|
||
|
)
|
||
|
|
||
|
type Entry struct {
|
||
|
Key string `json:"key"`
|
||
|
Flags uint64 `json:"flags"`
|
||
|
Value string `json:"value"`
|
||
|
}
|
||
|
|
||
|
func ToEntry(pair *api.KVPair) *Entry {
|
||
|
return &Entry{
|
||
|
Key: pair.Key,
|
||
|
Flags: pair.Flags,
|
||
|
Value: base64.StdEncoding.EncodeToString(pair.Value),
|
||
|
}
|
||
|
}
|