mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-20 15:36:31 +01:00
1e46961d68
Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/203 Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/38
13 lines
290 B
Go
13 lines
290 B
Go
package aws
|
|
|
|
// JSONValue is a representation of a grab bag type that will be marshaled
|
|
// into a json string. This type can be used just like any other map.
|
|
//
|
|
// Example:
|
|
//
|
|
// values := aws.JSONValue{
|
|
// "Foo": "Bar",
|
|
// }
|
|
// values["Baz"] = "Qux"
|
|
type JSONValue map[string]interface{}
|