mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
12 lines
151 B
Go
12 lines
151 B
Go
//go:build !(windows || linux || darwin)
|
|
|
|
package ntp
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
)
|
|
|
|
func SetSystemTime(nowTime time.Time) error {
|
|
return os.ErrInvalid
|
|
}
|