mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
7 lines
195 B
Go
7 lines
195 B
Go
package main
|
|
|
|
var (
|
|
ptrBoolFalse = func(v bool) *bool { return &v }(false)
|
|
ptrIntZero = func(v int64) *int64 { return &v }(0)
|
|
ptrStringEmpty = func(v string) *string { return &v }("")
|
|
)
|