update deps

This commit is contained in:
Yuzuki616
2023-07-22 18:57:34 +08:00
parent c48c9c65ab
commit 94bfaf14b9
9 changed files with 144 additions and 121 deletions

View File

@@ -0,0 +1,12 @@
//go:build !(windows || linux || darwin)
package systime
import (
"os"
"time"
)
func SetSystemTime(nowTime time.Time) error {
return os.ErrInvalid
}