2023-06-30 09:54:08 +00:00
|
|
|
package events
|
|
|
|
|
|
|
|
import (
|
|
|
|
"go.mau.fi/mautrix-gmessages/libgm/util"
|
|
|
|
)
|
|
|
|
|
2023-06-30 13:09:29 +00:00
|
|
|
type ClientReady struct {
|
2023-07-01 09:51:13 +00:00
|
|
|
Session *util.SessionResponse
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
2023-07-01 09:51:13 +00:00
|
|
|
func NewClientReady(session *util.SessionResponse) *ClientReady {
|
2023-06-30 13:09:29 +00:00
|
|
|
return &ClientReady{
|
2023-07-01 09:51:13 +00:00
|
|
|
Session: session,
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
}
|