twitch-bot/helpers.go

7 lines
139 B
Go
Raw Normal View History

package main
var (
ptrBoolFalse = func(v bool) *bool { return &v }(false)
ptrStringEmpty = func(v string) *string { return &v }("")
)