Files
Go-StudyExample/SourceAnalysisAndTool/mapstructure/DefaultHook_test.go
T

18 lines
369 B
Go
Raw Normal View History

2021-01-27 14:01:19 +08:00
/*
* @Author : huangzj
* @Time : 2021/1/25 16:09
* @Description
*/
package example
import (
"github.com/mitchellh/mapstructure"
"testing"
)
func TestDefaultHook(t *testing.T) {
//在 mitchellh/mapstructure 这个工程中提供了部分的默认Hook方法,主要作用是进行转换,具体可以查看源码
mapstructure.StringToIPNetHookFunc()
}