github.com/metacubex/mihomo@v1.18.5/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  }