1
0
mirror of https://github.com/wyx2685/V2bX.git synced 2025-03-11 06:58:13 -04:00
V2bX/common/systime/time_stub.go
2023-07-22 18:57:34 +08:00

13 lines
155 B
Go

//go:build !(windows || linux || darwin)
package systime
import (
"os"
"time"
)
func SetSystemTime(nowTime time.Time) error {
return os.ErrInvalid
}