github.com/TIBCOSoftware/flogo-lib@v0.5.9/core/data/path.go (about)

     1  package data
     2  
     3  import (
     4  	"github.com/TIBCOSoftware/flogo-lib/core/mapper/exprmapper/json"
     5  )
     6  
     7  func PathGetValue(value interface{}, path string) (interface{}, error) {
     8  	return json.GetPathValue(value, path)
     9  }