DHowett / go-plist

A pure Go Apple Property List transcoder
Other
414 stars 96 forks source link

plist - A pure Go property list transcoder coverage report

INSTALL

$ go get howett.net/plist

FEATURES

USE

package main
import (
    "howett.net/plist"
    "os"
)
func main() {
    encoder := plist.NewEncoder(os.Stdout)
    encoder.Encode(map[string]string{"hello": "world"})
}