mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-05 10:20:53 +02:00
f23638c036
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
27 lines
436 B
Go
27 lines
436 B
Go
package hcl
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/hashicorp/hcl"
|
|
"github.com/micro/go-micro/v2/config/encoder"
|
|
)
|
|
|
|
type hclEncoder struct{}
|
|
|
|
func (h hclEncoder) Encode(v interface{}) ([]byte, error) {
|
|
return json.Marshal(v)
|
|
}
|
|
|
|
func (h hclEncoder) Decode(d []byte, v interface{}) error {
|
|
return hcl.Unmarshal(d, v)
|
|
}
|
|
|
|
func (h hclEncoder) String() string {
|
|
return "hcl"
|
|
}
|
|
|
|
func NewEncoder() encoder.Encoder {
|
|
return hclEncoder{}
|
|
}
|