github.com/lynxsecurity/viper@v1.10.0/internal/encoding/json/codec.go (about)

     1  package json
     2  
     3  import (
     4  	"encoding/json"
     5  )
     6  
     7  // Codec implements the encoding.Encoder and encoding.Decoder interfaces for JSON encoding.
     8  type Codec struct{}
     9  
    10  func (Codec) Encode(v interface{}) ([]byte, error) {
    11  	// TODO: expose prefix and indent in the Codec as setting?
    12  	return json.MarshalIndent(v, "", "  ")
    13  }
    14  
    15  func (Codec) Decode(b []byte, v interface{}) error {
    16  	return json.Unmarshal(b, v)
    17  }