ZeroTierOne/cmd/zt_service_tests/zt_service_tests.go

16 lines
165 B
Go

package main
import (
"os"
"runtime"
"runtime/debug"
)
func main() {
runtime.GOMAXPROCS(1)
debug.SetGCPercent(15)
if !TestCertificate() {
os.Exit(1)
}
}