fix
wangpengfei
2023-08-24 2128d417cbb9136ad5d8448fef7ce62a082922be
1
2
3
4
5
package utils
 
func Pointer[T any](in T) (out *T) {
    return &in
}