mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 18:08:14 -05:00
13 lines
155 B
Go
13 lines
155 B
Go
|
//go:build !(windows || linux || darwin)
|
||
|
|
||
|
package systime
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func SetSystemTime(nowTime time.Time) error {
|
||
|
return os.ErrInvalid
|
||
|
}
|