23 lines
273 B
Go
23 lines
273 B
Go
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 {
|
|
|
|
} |