mirror of
https://github.com/owncast/owncast.git
synced 2025-01-08 01:27:31 +03:00
10 lines
213 B
Go
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 {
|
||
|
Event
|
||
|
User *user.User `json:"user"`
|
||
|
}
|