mirror of
https://github.com/Luzifer/discord-community.git
synced 2024-11-08 23:20:01 +00:00
5 lines
108 B
Go
5 lines
108 B
Go
|
package main
|
||
|
|
||
|
func ptrInt64(v int64) *int64 { return &v }
|
||
|
func ptrString(v string) *string { return &v }
|