码迷,mamicode.com
首页 > 其他好文 > 详细

golang multiconfig 示例

时间:2020-07-20 13:14:30      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:str   erro   package   roo   http   test   bool   name   odi   

参考资料:https://github.com/koding/multiconfig

测试代码:

package main

import (
        "fmt"
        "github.com/koding/multiconfig"
)

type Server struct {
        Demo DemoConfig
}

type DemoConfig struct {
        Name    string
        Port    int
        Enabled bool
        Users   []string
}

func main() {
        fmt.Println("Hello, World!")
        m := multiconfig.NewWithPath("config.toml") // supports TOML, JSON and YAML

        serverConf := new(Server)
        err := m.Load(serverConf) // Check for error
        if err != nil {
                fmt.Println(err)
        }
        m.MustLoad(serverConf) // Panic‘s if there is any error

        fmt.Println(serverConf.Demo.Port)
        fmt.Println(serverConf.Demo.Name)
        fmt.Println(serverConf.Demo.Users)
}

配置文件:

[root@localhost multiconfig]# cat config.toml 
[Demo]
Port = 1000
Name = "test"
Users = ["aaa", "bbb", "ccc"]

运行结果:

[root@localhost multiconfig]# go run test.go 
Hello, World!
1000
test
[aaa bbb ccc]

 

golang multiconfig 示例

标签:str   erro   package   roo   http   test   bool   name   odi   

原文地址:https://www.cnblogs.com/wangjq19920210/p/13344244.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!