github.com/inazumav/sing-box@v0.0.0-20230926072359-ab51429a14f1/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  }