feat(Go-StudyExample):

2021/01/27:新增mapstructure源码阅读和单测代码
This commit is contained in:
Huangzj
2021-01-27 14:01:19 +08:00
parent b5a1909eb0
commit b2315db276
10 changed files with 1436 additions and 11 deletions
@@ -0,0 +1,17 @@
/*
* @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()
}