15 lines
243 B
Go
15 lines
243 B
Go
package events
|
|
|
|
import (
|
|
"go.mau.fi/mautrix-gmessages/libgm/util"
|
|
)
|
|
|
|
type ClientReady struct {
|
|
Session *util.SessionResponse
|
|
}
|
|
|
|
func NewClientReady(session *util.SessionResponse) *ClientReady {
|
|
return &ClientReady{
|
|
Session: session,
|
|
}
|
|
}
|