Reading from and Writing to Toml Config file in Go (Golang)

When we develop golang applications, sometimes we need reading from config files. Your program has many options, and you don’t want to set every option using command line parameter. So we can use happily config files. What format should we use (json, yaml, ini, toml)? Nowadays I prefer toml format for config files. Toml TOML is …

Reading from and Writing to Toml Config file in Go (Golang) Devamı »