mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
9 lines
213 B
Go
9 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
|
|
}
|