Package maps provides tools for working with the Go programming language's map[string]any
type.
For example:
var data map[string]any // = ???
// ...
postalCode, found := maps.PathQuery(data, "user", "address", "postal-code")
Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-maps
To import package maps use import
code like the following:
import "github.com/reiver/go-maps"
To install package maps do the following:
GOPROXY=direct go get https://github.com/reiver/go-maps
Package maps was written by Charles Iliya Krempeaux