summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/stretchr/objx/value.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/stretchr/objx/value.go')
-rw-r--r--vendor/github.com/stretchr/objx/value.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/github.com/stretchr/objx/value.go b/vendor/github.com/stretchr/objx/value.go
new file mode 100644
index 000000000..7aaef06b1
--- /dev/null
+++ b/vendor/github.com/stretchr/objx/value.go
@@ -0,0 +1,13 @@
+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
+}