conv包提供了各个类型之间的转换:
conv.MustIntOf[int]("123", 0) // 返回 123 的数值
conv.MustString(123, "")// 返回字符串 123
conv.Int("123", 0) // 返回 123 数值和 nil 的 error 接口
conv.SliceOf[int]([]string{"1", "2", "3"}) // 返回 []int{1, 2, 3}
go get github.com/issue9/conv