25 lines
		
	
	
		
			424 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			424 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package yaml
 | |
| 
 | |
| import (
 | |
| 	"github.com/ghodss/yaml"
 | |
| 	"github.com/micro/go-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{}
 | |
| }
 |