zoie 88e39c560e update: 修改module | hace 1 año | |
---|---|---|
.. | ||
encoder | hace 1 año | |
loader | hace 1 año | |
reader | hace 1 año | |
secrets | hace 1 año | |
source | hace 1 año | |
README.md | hace 1 año | |
config.go | hace 1 año | |
default.go | hace 1 año | |
default_test.go | hace 1 año | |
options.go | hace 1 año | |
value.go | hace 1 año |
###
测试用例:
import (
"fmt"
"testing"
"gogs.baozhida.cn/zoie/OAuth-core/config"
"gogs.baozhida.cn/zoie/OAuth-core/config/source/file"
)
func TestApp(t *testing.T) {
c, err := config.NewConfig()
if err != nil {
t.Error(err)
}
err = c.Load(file.NewSource(file.WithPath("config/settings.yml")))
if err != nil {
t.Error(err)
}
fmt.Println(c.Map())
}