2017-10-17 13:22:23 +02:00
|
|
|
package impexp
|
2017-10-11 14:51:28 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/api"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Entry struct {
|
2019-11-25 12:57:35 -05:00
|
|
|
Key string `json:"key"`
|
|
|
|
Flags uint64 `json:"flags"`
|
|
|
|
Value string `json:"value"`
|
|
|
|
Namespace string `json:"namespace,omitempty"`
|
2017-10-11 14:51:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func ToEntry(pair *api.KVPair) *Entry {
|
|
|
|
return &Entry{
|
2019-11-25 12:57:35 -05:00
|
|
|
Key: pair.Key,
|
|
|
|
Flags: pair.Flags,
|
|
|
|
Value: base64.StdEncoding.EncodeToString(pair.Value),
|
|
|
|
Namespace: pair.Namespace,
|
2017-10-11 14:51:28 +02:00
|
|
|
}
|
|
|
|
}
|