owncast/core/chat/events/connectedClientInfo.go
2023-12-19 18:30:18 -08:00

10 lines
212 B
Go

package events
import "github.com/owncast/owncast/models"
// ConnectedClientInfo represents the information about a connected client.
type ConnectedClientInfo struct {
Event
User *models.User `json:"user"`
}