1
0
Fork 0
mirror of https://github.com/Luzifer/twitch-bot.git synced 2025-01-04 02:36:01 +00:00
twitch-bot/events.go

12 lines
240 B
Go
Raw Permalink Normal View History

2020-12-21 00:32:39 +00:00
package main
func ptrStr(s string) *string { return &s }
var (
eventTypeJoin = ptrStr("join")
2020-12-21 00:32:39 +00:00
eventTypeHost = ptrStr("host")
eventTypePermit = ptrStr("permit")
eventTypeRaid = ptrStr("raid")
eventTypeResub = ptrStr("resub")
)