yq/pkg/yqlib/no_toml.go
2025-12-26 11:08:24 +11:00

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
}