mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
11 lines
160 B
Go
11 lines
160 B
Go
//go:build !windows
|
|
|
|
package winpowrprof
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func NewEventListener(callback EventCallback) (EventListener, error) {
|
|
return nil, os.ErrInvalid
|
|
}
|