22 lines
348 B
Go
22 lines
348 B
Go
package impexp
|
|
|
|
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),
|
|
}
|
|
}
|