mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2025-01-02 01:41:17 +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 }("")
|
|
)
|