//go:generate goversioninfo -icon=windowsdata/resource/netmaker.ico -manifest=netclient.exe.manifest.xml -64=true -o=netclient.syso package main import ( "log" "os" "runtime/debug" "github.com/gravitl/netmaker/netclient/cli_options" "github.com/gravitl/netmaker/netclient/gui" "github.com/gravitl/netmaker/netclient/ncutils" "github.com/gravitl/netmaker/netclient/ncwindows" "github.com/urfave/cli/v2" ) var version = "dev" func main() { app := cli.NewApp() app.Name = "Netclient" app.Version = version ncutils.SetVersion(version) cliFlags := cli_options.GetFlags(ncutils.GetHostname()) app.Commands = cli_options.GetCommands(cliFlags[:]) app.Description = "Used to perform interactions with Netmaker server and set local WireGuard config." app.Usage = "Netmaker's netclient agent and CLI." app.UsageText = "netclient [global options] command [command options] [arguments...]. Adjust verbosity of given command with -v, -vv or -vvv (max)." setGarbageCollection() if ncutils.IsWindows() { ncwindows.InitWindows() } else { ncutils.CheckUID() ncutils.CheckWG() } if len(os.Args) <= 1 { networks, err := ncutils.GetSystemNetworks() if err != nil { networks = []string{} } gui.Run(networks) } 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) } }