feat(Go-StudyExample):
2021/01/27:新增mapstructure源码阅读和单测代码
This commit is contained in:
@@ -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()
|
||||
}
|
||||
Reference in New Issue
Block a user