github.com/sagernet/sing@v0.4.0-beta.19.0.20240518125136-f67a0988a636/common/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 }