We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64ec1f4 commit 23abf50Copy full SHA for 23abf50
pkg/yqlib/encoder_toml.go
@@ -1,3 +1,5 @@
1
+//go:build !yq_notoml
2
+
3
package yqlib
4
5
import (
pkg/yqlib/no_toml.go
@@ -5,3 +5,11 @@ package yqlib
func NewTomlDecoder() Decoder {
6
return nil
7
}
8
9
+func NewTomlEncoder() Encoder {
10
+ return nil
11
+}
12
13
+func NewTomlEncoderWithPrefs(prefs TomlPreferences) Encoder {
14
15
0 commit comments