goProject/.svn/pristine/2a/2a62442565a8992159b26fd4bcb62dd98d3f8e35.svn-base
2025-01-06 16:21:36 +08:00

15 lines
212 B
Plaintext

package yamlUtil
import (
"fmt"
"goutil/jsonUtil"
"testing"
)
func TestLoadYaml(t *testing.T) {
config, _ := LoadFromFile("config.yaml")
configStr, _ := jsonUtil.DeepClone(config)
fmt.Print(configStr)
}