1
0
Fork 0
mirror of https://github.com/Luzifer/twitch-bot.git synced 2025-01-04 02:36:01 +00:00
twitch-bot/helpers.go

8 lines
195 B
Go
Raw Permalink Normal View History

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 }("")
)