mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-09 16:50:01 +00:00
6 lines
139 B
Go
6 lines
139 B
Go
package main
|
|
|
|
var (
|
|
ptrBoolFalse = func(v bool) *bool { return &v }(false)
|
|
ptrStringEmpty = func(v string) *string { return &v }("")
|
|
)
|