6 Star 11 Fork 1

distill/distill-infra

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
testToml.go 366 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lyndon Hu 提交于 2020-04-29 10:51 . infra init
package main
import (
"fmt"
"github.com/BurntSushi/toml"
)
var test struct {
TestField map[string]interface{}
}
var testToml = `
[TestField]
Number = 123
Key = "value"
`
func main() {
_, err := toml.Decode(testToml, &test)
if err != nil {
panic(err.Error())
}
fmt.Println(test.TestField["Number"].(int64))
fmt.Println(test.TestField["Key"].(string))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/banyanhouse/distill-infra.git
git@gitee.com:banyanhouse/distill-infra.git
banyanhouse
distill-infra
distill-infra
v0.0.25

搜索帮助