Clash.Meta/component/power/event_other.go

10 lines
166 B
Go
Raw Normal View History

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