gh-ost/vendor/github.com/go-ini/ini
Tim Vaillancourt 47d49c6b92
Add go mod (#935)
* Add a go.mod file

* run go mod vendor again

* Move to a well-supported ini file reader

* Remove GO111MODULE=off

* Use go 1.16

* Rename github.com/outbrain/golib -> github.com/openark/golib

* Remove *.go-e files

* Fix for `strconv.ParseInt: parsing "": invalid syntax` error

* Add test for '[osc]' section

Co-authored-by: Nate Wernimont <nate.wernimont@workiva.com>
2021-06-24 20:19:37 +02:00
..
.gitignore Add go mod (#935) 2021-06-24 20:19:37 +02:00
codecov.yml Add go mod (#935) 2021-06-24 20:19:37 +02:00
data_source.go Add go mod (#935) 2021-06-24 20:19:37 +02:00
deprecated.go Add go mod (#935) 2021-06-24 20:19:37 +02:00
error.go Add go mod (#935) 2021-06-24 20:19:37 +02:00
file.go Add go mod (#935) 2021-06-24 20:19:37 +02:00
helper.go Add go mod (#935) 2021-06-24 20:19:37 +02:00
ini.go Add go mod (#935) 2021-06-24 20:19:37 +02:00
key.go Add go mod (#935) 2021-06-24 20:19:37 +02:00
LICENSE Add go mod (#935) 2021-06-24 20:19:37 +02:00
Makefile Add go mod (#935) 2021-06-24 20:19:37 +02:00
parser.go Add go mod (#935) 2021-06-24 20:19:37 +02:00
README.md Add go mod (#935) 2021-06-24 20:19:37 +02:00
section.go Add go mod (#935) 2021-06-24 20:19:37 +02:00
struct.go Add go mod (#935) 2021-06-24 20:19:37 +02:00

INI

GitHub Workflow Status codecov GoDoc Sourcegraph

Package ini provides INI file read and write functionality in Go.

Features

  • Load from multiple data sources(file, []byte, io.Reader and io.ReadCloser) with overwrites.
  • Read with recursion values.
  • Read with parent-child sections.
  • Read with auto-increment key names.
  • Read with multiple-line values.
  • Read with tons of helper methods.
  • Read and convert values to Go types.
  • Read and WRITE comments of sections and keys.
  • Manipulate sections, keys and comments with ease.
  • Keep sections and keys in order as you parse and save.

Installation

The minimum requirement of Go is 1.6.

$ go get gopkg.in/ini.v1

Please add -u flag to update in the future.

Getting Help

License

This project is under Apache v2 License. See the LICENSE file for the full license text.