Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/subpop/go-ini

Go package that encodes and decodes INI-files
https://github.com/subpop/go-ini

decoder encoder golang ini marshal unmarshal

Last synced: 24 days ago
JSON representation

Go package that encodes and decodes INI-files

Lists

README

        

[![PkgGoDev](https://pkg.go.dev/badge/git.sr.ht/~spc/go-ini)](https://pkg.go.dev/git.sr.ht/~spc/go-ini)
[![Go Report Card](https://goreportcard.com/badge/github.com/subpop/go-ini)](https://goreportcard.com/report/github.com/subpop/go-ini)

# go-ini

A Go package that encodes and decodes INI-files.

# Usage

```go
data := `[settings]
username=root
password=swordfish
shell[unix]=/bin/sh
shell[win32]=PowerShell.exe
`

var config struct {
Settings struct {
Username string `ini:"username"`
Password string `ini:"password"`
Shell map[string]string `ini:"shell"`
} `ini:"settings"`
}

if err := ini.Unmarshal(data, &config); err != nil {
fmt.Println(err)
}
fmt.Println(config)
```