github.com/kelleygo/clashcore@v1.0.2/component/power/event_other.go (about) 1 //go:build !windows 2 3 package power 4 5 import "errors" 6 7 func NewEventListener(cb func(Type)) (func(), error) { 8 return nil, errors.New("not support on this platform") 9 }