twitchpubsub/structs.go

23 lines
273 B
Go
Raw Normal View History

2017-04-15 05:35:29 +00:00
package twitchpubsub
import "time"
type ViewerCount struct {
Channel string
Viewers int
ServerTime time.Time
}
type StreamUp struct {
Channel string
ServerTime time.Time
}
type StreamDown struct {
Channel string
ServerTime time.Time
}
type Reconnect struct {
}