mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-12 14:12:42 +02:00
16 lines
165 B
Go
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)
|
|
}
|
|
}
|