mirror of
https://github.com/harness/drone.git
synced 2025-05-17 09:30:00 +08:00
11 lines
247 B
Go
11 lines
247 B
Go
package objx
|
|
|
|
var TestMap map[string]interface{} = map[string]interface{}{
|
|
"name": "Tyler",
|
|
"address": map[string]interface{}{
|
|
"city": "Salt Lake City",
|
|
"state": "UT",
|
|
},
|
|
"numbers": []interface{}{"one", "two", "three", "four", "five"},
|
|
}
|