traefik/vendor/github.com/stretchr/objx/value.go
2017-03-09 13:13:02 +01:00

13 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
}