19 lines
273 B
Go
19 lines
273 B
Go
package viperx_test
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"code.yun.ink/pkg/viperx"
|
|
)
|
|
|
|
func TestViper(t *testing.T) {
|
|
var data Config
|
|
viperx.InitConfig("./config.yml", &data)
|
|
fmt.Println(data)
|
|
}
|
|
|
|
type Config struct {
|
|
Name string `mapstructure:"name" json:"name" yaml:"name"`
|
|
}
|