gmessages/libgm/events/useralerts.go

24 lines
357 B
Go
Raw Normal View History

2023-06-30 09:54:08 +00:00
package events
type BROWSER_ACTIVE struct {
SessionId string
}
func NewBrowserActive(sessionId string) *BROWSER_ACTIVE {
return &BROWSER_ACTIVE{
SessionId: sessionId,
}
}
2023-06-30 09:55:49 +00:00
type BATTERY struct{}
2023-06-30 09:54:08 +00:00
func NewBattery() *BATTERY {
return &BATTERY{}
}
2023-06-30 09:55:49 +00:00
type DATA_CONNECTION struct{}
2023-06-30 09:54:08 +00:00
func NewDataConnection() *DATA_CONNECTION {
return &DATA_CONNECTION{}
2023-06-30 09:55:49 +00:00
}