Adding notoml directive to encoder

This commit is contained in:
Mike Farah 2025-12-26 11:08:24 +11:00
parent 64ec1f4aa7
commit 23abf50fef
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,5 @@
//go:build !yq_notoml
package yqlib
import (

View File

@ -5,3 +5,11 @@ package yqlib
func NewTomlDecoder() Decoder {
return nil
}
func NewTomlEncoder() Encoder {
return nil
}
func NewTomlEncoderWithPrefs(prefs TomlPreferences) Encoder {
return nil
}