1
0
Fork 0
kifflom/run.go

19 lines
272 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{"/bananas/[*]/weight"})
res := p.Parse()
pretty.Println(res)
}