github.com/sagernet/sing-box@v1.9.0-rc.20/common/settings/time_stub.go (about) 1 //go:build !(windows || linux || darwin) 2 3 package settings 4 5 import ( 6 "os" 7 "time" 8 ) 9 10 func SetSystemTime(nowTime time.Time) error { 11 return os.ErrInvalid 12 }