clash/component/power/event_other.go
2024-02-16 11:25:10 +08:00

9 lines
166 B
Go

//go:build !windows
package power
import "errors"
func NewEventListener(cb func(Type)) (func(), error) {
return nil, errors.New("not support on this platform")
}