Files
mkcert/vendor/github.com/DHowett/go-plist
2018-06-25 01:32:41 -04:00
..
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00
2018-06-25 01:32:41 -04:00

plist - A pure Go property list transcoder coverage report

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"})
}