Vasiliy Tolstov
06136312bb
* regen files with never protoc * rewrite import path Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
25 lines
428 B
Go
25 lines
428 B
Go
package yaml
|
|
|
|
import (
|
|
"github.com/ghodss/yaml"
|
|
"github.com/unistack-org/micro/v3/config/encoder"
|
|
)
|
|
|
|
type yamlEncoder struct{}
|
|
|
|
func (y yamlEncoder) Encode(v interface{}) ([]byte, error) {
|
|
return yaml.Marshal(v)
|
|
}
|
|
|
|
func (y yamlEncoder) Decode(d []byte, v interface{}) error {
|
|
return yaml.Unmarshal(d, v)
|
|
}
|
|
|
|
func (y yamlEncoder) String() string {
|
|
return "yaml"
|
|
}
|
|
|
|
func NewEncoder() encoder.Encoder {
|
|
return yamlEncoder{}
|
|
}
|