mirror of
https://github.com/mikefarah/yq.git
synced 2026-03-10 15:54:26 +00:00
16 lines
207 B
Go
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
|
|
}
|