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