feat: 支持设备探活

This commit is contained in:
余泓铮
2025-07-17 11:59:25 +08:00
parent 76d60cb7d0
commit b200fd4019

View File

@@ -45,6 +45,10 @@ func (dev *BrowserDevice) Setup() error {
return nil
}
func (dev *BrowserDevice) IsHealthy() (bool, error) {
return true, nil
}
func (dev *BrowserDevice) LogEnabled() bool {
return dev.Options.LogOn
}