⌛ Simple Network Time Protocol Implementation in Golang.
~$ go get github.com/song940/ntp-go
package main
import (
"log"
"github.com/song940/ntp-go/ntp"
)
func main() {
client := ntp.NewClient(
"time.apple.com:123",
)
time, err := client.GetTime()
log.Println(time, err)
}
TODO: implement
⌛ simple network time protocol implementation for node.js
This project is licensed under the MIT License.