Add NTP service

This commit is contained in:
世界
2023-02-21 14:53:00 +08:00
parent 5635d6a4dc
commit 7ce6f68b5f
26 changed files with 186 additions and 26 deletions

View File

@@ -34,7 +34,7 @@ func NewClient(router adapter.Router, serverAddress string, options option.Outbo
} else if options.UTLS != nil && options.UTLS.Enabled {
return NewUTLSClient(router, serverAddress, options)
} else {
return NewSTDClient(serverAddress, options)
return NewSTDClient(router, serverAddress, options)
}
}