mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 08:10:08 +00:00
11 lines
206 B
Go
11 lines
206 B
Go
|
package main
|
||
|
|
||
|
func ptrStr(s string) *string { return &s }
|
||
|
|
||
|
var (
|
||
|
eventTypeHost = ptrStr("host")
|
||
|
eventTypePermit = ptrStr("permit")
|
||
|
eventTypeRaid = ptrStr("raid")
|
||
|
eventTypeResub = ptrStr("resub")
|
||
|
)
|