1
0
Fork 0
kifflom/run.go

23 lines
317 B
Go

package main
import (
"io/ioutil"
"os"
"github.com/kr/pretty"
"github.com/localhots/punk/parser"
)
func main() {
f, _ := os.Open("test.json")
b, _ := ioutil.ReadAll(f)
p := parser.New(b, []string{
"/prices/pomelo",
"/prices/peach",
"/bananas/[*]/weight",
})
res := p.Parse()
pretty.Println(res)
}