Add missing testify/mock

This commit is contained in:
Harshavardhana
2015-03-27 23:27:17 -07:00
parent 8e8281e210
commit fc3ee4d459
40 changed files with 11578 additions and 1 deletions
+13
View File
@@ -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
}