diff options
| author | Rutger Broekhoff | 2023-12-29 21:31:53 +0100 |
|---|---|---|
| committer | Rutger Broekhoff | 2023-12-29 21:31:53 +0100 |
| commit | 404aeae4545d2426c089a5f8d5e82dae56f5212b (patch) | |
| tree | 2d84e00af272b39fc04f3795ae06bc48970e57b5 /vendor/gopkg.in/ini.v1/README.md | |
| parent | 209d8b0187ed025dec9ac149ebcced3462877bff (diff) | |
| download | gitolfs3-404aeae4545d2426c089a5f8d5e82dae56f5212b.tar.gz gitolfs3-404aeae4545d2426c089a5f8d5e82dae56f5212b.zip | |
Make Nix builds work
Diffstat (limited to 'vendor/gopkg.in/ini.v1/README.md')
| -rw-r--r-- | vendor/gopkg.in/ini.v1/README.md | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/vendor/gopkg.in/ini.v1/README.md b/vendor/gopkg.in/ini.v1/README.md new file mode 100644 index 0000000..30606d9 --- /dev/null +++ b/vendor/gopkg.in/ini.v1/README.md | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | # INI | ||
| 2 | |||
| 3 | [](https://github.com/go-ini/ini/actions?query=branch%3Amain) | ||
| 4 | [](https://codecov.io/gh/go-ini/ini) | ||
| 5 | [](https://pkg.go.dev/github.com/go-ini/ini?tab=doc) | ||
| 6 | [](https://sourcegraph.com/github.com/go-ini/ini) | ||
| 7 | |||
| 8 |  | ||
| 9 | |||
| 10 | Package ini provides INI file read and write functionality in Go. | ||
| 11 | |||
| 12 | ## Features | ||
| 13 | |||
| 14 | - Load from multiple data sources(file, `[]byte`, `io.Reader` and `io.ReadCloser`) with overwrites. | ||
| 15 | - Read with recursion values. | ||
| 16 | - Read with parent-child sections. | ||
| 17 | - Read with auto-increment key names. | ||
| 18 | - Read with multiple-line values. | ||
| 19 | - Read with tons of helper methods. | ||
| 20 | - Read and convert values to Go types. | ||
| 21 | - Read and **WRITE** comments of sections and keys. | ||
| 22 | - Manipulate sections, keys and comments with ease. | ||
| 23 | - Keep sections and keys in order as you parse and save. | ||
| 24 | |||
| 25 | ## Installation | ||
| 26 | |||
| 27 | The minimum requirement of Go is **1.13**. | ||
| 28 | |||
| 29 | ```sh | ||
| 30 | $ go get gopkg.in/ini.v1 | ||
| 31 | ``` | ||
| 32 | |||
| 33 | Please add `-u` flag to update in the future. | ||
| 34 | |||
| 35 | ## Getting Help | ||
| 36 | |||
| 37 | - [Getting Started](https://ini.unknwon.io/docs/intro/getting_started) | ||
| 38 | - [API Documentation](https://gowalker.org/gopkg.in/ini.v1) | ||
| 39 | - 中国大陆镜像:https://ini.unknwon.cn | ||
| 40 | |||
| 41 | ## License | ||
| 42 | |||
| 43 | This project is under Apache v2 License. See the [LICENSE](LICENSE) file for the full license text. | ||