Merge time service to library

This commit is contained in:
世界 2024-03-26 20:40:59 +08:00
parent a74e3a1fa3
commit 3f6c423e76
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 101 additions and 19 deletions

14
common/ntp/time_unix.go Normal file
View file

@ -0,0 +1,14 @@
//go:build linux || darwin
package ntp
import (
"time"
"golang.org/x/sys/unix"
)
func SetSystemTime(nowTime time.Time) error {
timeVal := unix.NsecToTimeval(nowTime.UnixNano())
return unix.Settimeofday(&timeVal)
}