mirror of https://github.com/cjbassi/gotop.git
56f67d94e5 | ||
---|---|---|
.. | ||
.gitlab-ci.yml | ||
LICENSE | ||
README.md | ||
bplist.go | ||
bplist_generator.go | ||
bplist_parser.go | ||
decode.go | ||
doc.go | ||
encode.go | ||
fuzz.go | ||
go.mod | ||
marshal.go | ||
must.go | ||
plist.go | ||
plist_types.go | ||
text_generator.go | ||
text_parser.go | ||
text_tables.go | ||
typeinfo.go | ||
unmarshal.go | ||
util.go | ||
xml_generator.go | ||
xml_parser.go | ||
zerocopy.go | ||
zerocopy_appengine.go |
README.md
plist - A pure Go property list transcoder
INSTALL
$ go get howett.net/plist
FEATURES
- Supports encoding/decoding property lists (Apple XML, Apple Binary, OpenStep and GNUStep) from/to arbitrary Go types
USE
package main
import (
"howett.net/plist"
"os"
)
func main() {
encoder := plist.NewEncoder(os.Stdout)
encoder.Encode(map[string]string{"hello": "world"})
}