yq/pkg/yqlib/no_toml.go
Mike Farah 7103b78d38
Draft: Toml (#1439)
* toml wip

* wip

* Fixed auto parsing toml

* Added build flag not to include toml

* Parse toml docs and tests

* minor updates
2023-03-26 10:59:15 +11:00

8 lines
83 B
Go

//go:build yq_notoml
package yqlib
func NewTomlDecoder() Decoder {
return nil
}