From b4869a32c8db2bdcaf6e2e6812dc6fc2944a7cdf Mon Sep 17 00:00:00 2001 From: Moses Narrow <36607567+0pcom@users.noreply.github.com> Date: Tue, 5 Nov 2024 06:38:37 -0600 Subject: [PATCH] remove node-visualizer from joint compilation of skywire-services (#85) --- cmd/skywire-services/commands/root.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/cmd/skywire-services/commands/root.go b/cmd/skywire-services/commands/root.go index 69157ef5..580d85f5 100644 --- a/cmd/skywire-services/commands/root.go +++ b/cmd/skywire-services/commands/root.go @@ -14,7 +14,6 @@ import ( ar "github.com/skycoin/skywire-services/cmd/address-resolver/commands" confbs "github.com/skycoin/skywire-services/cmd/config-bootstrapper/commands" kg "github.com/skycoin/skywire-services/cmd/keys-gen/commands" - nv "github.com/skycoin/skywire-services/cmd/node-visualizer/commands" rf "github.com/skycoin/skywire-services/cmd/route-finder/commands" se "github.com/skycoin/skywire-services/cmd/sw-env/commands" tpd "github.com/skycoin/skywire-services/cmd/transport-discovery/commands" @@ -30,7 +29,6 @@ func init() { rf.RootCmd, confbs.RootCmd, kg.RootCmd, - nv.RootCmd, se.RootCmd, ut.RootCmd, ) @@ -40,7 +38,6 @@ func init() { rf.RootCmd.Use = "rf" confbs.RootCmd.Use = "confbs" kg.RootCmd.Use = "kg" - nv.RootCmd.Use = "nv" se.RootCmd.Use = "se" ut.RootCmd.Use = "ut" }