mirror of
https://github.com/wader/fq.git
synced 2024-11-24 03:05:22 +03:00
cae288e6be
json, yaml, toml, xml, html, csv are now normal formats and most of them also particiate in probing (not html and csv). Also fixes a bunch of bugs in to/fromxml, to/fromjq etc.
15 lines
147 B
Go
15 lines
147 B
Go
package json
|
|
|
|
import (
|
|
"embed"
|
|
|
|
"github.com/wader/fq/pkg/interp"
|
|
)
|
|
|
|
//go:embed jq.jq
|
|
var jqFS embed.FS
|
|
|
|
func init() {
|
|
interp.RegisterFS(jqFS)
|
|
}
|