Take control over your live stream video by running it yourself. Streaming + chat out of the box.
 
 
 
 
 
 

11 lines
287 B

package models
import "time"
// UserJoinedEvent represents an event when a user joins the chat.
type UserJoinedEvent struct {
Username string `json:"username"`
Type EventType `json:"type"`
ID string `json:"id"`
Timestamp time.Time `json:"timestamp,omitempty"`
}