Files
sing-box-extended-mirror/common/settings/time_stub.go
T

13 lines
156 B
Go
Raw Normal View History

2023-03-18 23:01:10 +08:00
//go:build !(windows || linux || darwin)
package settings
import (
"os"
"time"
)
func SetSystemTime(nowTime time.Time) error {
return os.ErrInvalid
}