github.com/kelleygo/clashcore@v1.0.2/ntp/time_stub.go (about) 1 //go:build !(windows || linux || darwin) 2 3 package ntp 4 5 import ( 6 "os" 7 "time" 8 ) 9 10 func setSystemTime(nowTime time.Time) error { 11 return os.ErrInvalid 12 }