mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
12 lines
174 B
Go
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
|
||
|
}
|