| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | //go:generate goversioninfo -icon=windowsdata/resource/netmaker.ico -manifest=netclient.exe.manifest.xml -64=true -o=netclient.sysopackage mainimport (	"log"	"os"	"runtime/debug"	"github.com/gravitl/netmaker/netclient/cli_options"	"github.com/gravitl/netmaker/netclient/command"	"github.com/gravitl/netmaker/netclient/ncutils"	"github.com/gravitl/netmaker/netclient/ncwindows"	"github.com/urfave/cli/v2")func main() {	app := cli.NewApp()	app.Name = "Netclient CLI"	app.Usage = "Netmaker's netclient agent and CLI. Used to perform interactions with Netmaker server and set local WireGuard config."	app.Version = "v0.10.0"	cliFlags := cli_options.GetFlags(ncutils.GetHostname())	app.Commands = cli_options.GetCommands(cliFlags[:])	setGarbageCollection()	if ncutils.IsWindows() {		ncwindows.InitWindows()	} else {		ncutils.CheckUID()		ncutils.CheckWG()	}	if len(os.Args) == 1 && ncutils.IsWindows() {		command.RunUserspaceDaemon()	} else {		err := app.Run(os.Args)		if err != nil {			log.Fatal(err)		}	}}func setGarbageCollection() {	_, gcset := os.LookupEnv("GOGC")	if !gcset {		debug.SetGCPercent(ncutils.DEFAULT_GC_PERCENT)	}}
 |