event_other.go 166 B

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