# README
library
inikit
note: https://ini.unknwon.cn/docs/intro/getting_started
cfg, err := ini.Load(
[]byte("raw data"), // 原始数据
"filename", // 文件路径
io.NopCloser(bytes.NewReader([]byte("some other data"))),
)
// 典型读取操作,默认分区可以使用空字符串表示
fmt.Println("App Mode:", cfg.Section("").Key("app_mode").String())
fmt.Println("Data Path:", cfg.Section("paths").Key("data").String())
// 试一试自动类型转换
fmt.Printf("Port Number: (%[1]T) %[1]d\n", cfg.Section("server").Key("http_port").MustInt(9999))
fmt.Printf("Enforce Domain: (%[1]T) %[1]v\n", cfg.Section("server").Key("enforce_domain").MustBool(false))
// 差不多了,修改某个值然后进行保存
cfg.Section("").Key("app_mode").SetValue("production")
cfg.SaveTo("my.ini.local")
# Functions
No description provided by the author