ZeroTierOne/cmd/zt_service_tests/zt_service_tests.go
2020-07-28 14:38:41 -07:00

16 lines
165 B
Go

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