yq/pkg/yqlib/no_json.go
2023-02-14 16:53:07 +01:00

12 lines
174 B
Go

//go:build yq_nojson
package yqlib
func NewJSONDecoder() Decoder {
return nil
}
func NewJSONEncoder(indent int, colorise bool, unwrapScalar bool) Encoder {
return nil
}