native response: add Int64Ptr

First non-struct pointer appeared (Asset.ID), nice to have a helper in the same pkg
This commit is contained in:
mxmCherry
2021-04-12 19:32:14 +03:00
parent 0dc23e6747
commit e39b77ca3c
+6
View File
@@ -0,0 +1,6 @@
package response
// Int64Ptr returns pointer to passed argument.
func Int64Ptr(n int64) *int64 {
return &n
}