mirror of
https://github.com/owncast/owncast.git
synced 2024-11-27 09:45:36 +03:00
2ccd3aad87
* It builds with the new user repository * fix(test): fix broken test * fix(api): fix registration endpoint that was broken after the change * fix(test): update test to reflect new user repository * fix: use interface type instead of concrete type * fix: restore commented out code
9 lines
212 B
Go
9 lines
212 B
Go
package events
|
|
|
|
import "github.com/owncast/owncast/models"
|
|
|
|
// ConnectedClientInfo represents the information about a connected client.
|
|
type ConnectedClientInfo struct {
|
|
User *models.User `json:"user"`
|
|
Event
|
|
}
|