mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 22:16:41 +03:00
e39b77ca3c
First non-struct pointer appeared (Asset.ID), nice to have a helper in the same pkg
7 lines
111 B
Go
7 lines
111 B
Go
package response
|
|
|
|
// Int64Ptr returns pointer to passed argument.
|
|
func Int64Ptr(n int64) *int64 {
|
|
return &n
|
|
}
|