mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-06-05 05:20:34 +00:00
12 lines
283 B
Go
12 lines
283 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 := JSONValue{
|
|
// "Foo": "Bar",
|
|
// }
|
|
// values["Baz"] = "Qux"
|
|
type JSONValue map[string]interface{}
|