Files
yq/pkg/yqlib/no_toml.go
T

16 lines
207 B
Go

//go:build yq_notoml
package yqlib
func NewTomlDecoder() Decoder {
return nil
}
func NewTomlEncoder() Encoder {
return nil
}
func NewTomlEncoderWithPrefs(prefs TomlPreferences) Encoder {
return nil
}