kifflom/run.go
2015-02-18 20:43:00 +07:00

23 lines
355 B
Go

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