fix golint issues (#532)

master
Kevin Wan 4 years ago committed by GitHub
parent 51de0d0620
commit c4b2cddef7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -67,6 +67,7 @@ func init() {
}
}
// RefreshCpu refreshes cpu usage and returns.
func RefreshCpu() uint64 {
total, err := totalCpuUsage()
if err != nil {

@ -7,25 +7,25 @@ import (
)
const (
// DirectScheme stands for direct schema.
// DirectScheme stands for direct scheme.
DirectScheme = "direct"
// DiscovSchema stands for discov schema.
// DiscovScheme stands for discov scheme.
DiscovScheme = "discov"
// EnpointSepChar is the separator cha in endpoints.
// EndpointSepChar is the separator cha in endpoints.
EndpointSepChar = ','
subsetSize = 32
)
var (
// EnpointSep is the separator string in endpoints.
// EndpointSep is the separator string in endpoints.
EndpointSep = fmt.Sprintf("%c", EndpointSepChar)
dirBuilder directBuilder
disBuilder discovBuilder
)
// RegisterResolver registers the direct and discov schemas to the resolver.
// RegisterResolver registers the direct and discov schemes to the resolver.
func RegisterResolver() {
resolver.Register(&dirBuilder)
resolver.Register(&disBuilder)

Loading…
Cancel
Save