mirror of https://github.com/hashicorp/consul
parent
585b5b8d4e
commit
cce364445e
@ -0,0 +1,21 @@
|
||||
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),
|
||||
}
|
||||
}
|
Loading…
Reference in new issue