Files
owncast/core/chat/events/connectedClientInfo.go
2023-10-08 14:22:28 -07:00

10 lines
213 B
Go

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