Files
openrtb/native1/response/ptr.go
T
mxmCherry e39b77ca3c native response: add Int64Ptr
First non-struct pointer appeared (Asset.ID), nice to have a helper in the same pkg
2021-04-12 19:32:17 +03:00

7 lines
111 B
Go

package response
// Int64Ptr returns pointer to passed argument.
func Int64Ptr(n int64) *int64 {
return &n
}