Initial commit and macOS install

This commit is contained in:
Filippo Valsorda
2018-06-25 01:32:41 -04:00
commit cbca29dc62
28 changed files with 3620 additions and 0 deletions

21
vendor/github.com/DHowett/go-plist/README.md generated vendored Normal file
View File

@@ -0,0 +1,21 @@
# plist - A pure Go property list transcoder [![coverage report](https://gitlab.howett.net/go/plist/badges/master/coverage.svg)](https://gitlab.howett.net/go/plist/commits/master)
## 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
```go
package main
import (
"howett.net/plist"
"os"
)
func main() {
encoder := plist.NewEncoder(os.Stdout)
encoder.Encode(map[string]string{"hello": "world"})
}
```