woodpecker/vendor/github.com/stretchr/objx/value.go
2015-09-30 14:00:48 -07:00

14 lines
300 B
Go

package objx
// Value provides methods for extracting interface{} data in various
// types.
type Value struct {
// data contains the raw data being managed by this Value
data interface{}
}
// Data returns the raw data contained by this Value
func (v *Value) Data() interface{} {
return v.data
}