2023-06-30 09:54:08 +00:00
|
|
|
package events
|
|
|
|
|
2023-06-30 13:09:29 +00:00
|
|
|
type BrowserActive struct {
|
2023-06-30 13:26:46 +00:00
|
|
|
SessionID string
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
2023-06-30 13:26:46 +00:00
|
|
|
func NewBrowserActive(sessionID string) *BrowserActive {
|
2023-06-30 13:09:29 +00:00
|
|
|
return &BrowserActive{
|
2023-06-30 13:26:46 +00:00
|
|
|
SessionID: sessionID,
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-30 13:09:29 +00:00
|
|
|
type Battery struct{}
|
2023-06-30 09:54:08 +00:00
|
|
|
|
2023-06-30 13:09:29 +00:00
|
|
|
func NewBattery() *Battery {
|
|
|
|
return &Battery{}
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
2023-06-30 13:09:29 +00:00
|
|
|
type DataConnection struct{}
|
2023-06-30 09:54:08 +00:00
|
|
|
|
2023-06-30 13:09:29 +00:00
|
|
|
func NewDataConnection() *DataConnection {
|
|
|
|
return &DataConnection{}
|
2023-06-30 09:55:49 +00:00
|
|
|
}
|