From 8d3debf144fa010064926af60e928a34d852225d Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Mon, 10 Mar 2025 10:29:21 -0400 Subject: [PATCH] remove unused 'agent share' and 'agent access' commands --- cmd/zrok/main.go | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/cmd/zrok/main.go b/cmd/zrok/main.go index 8c45a3bc..615e2117 100644 --- a/cmd/zrok/main.go +++ b/cmd/zrok/main.go @@ -25,8 +25,6 @@ func init() { adminCmd.AddCommand(adminListCmd) adminCmd.AddCommand(adminUpdateCmd) rootCmd.AddCommand(agentCmd) - agentCmd.AddCommand(agentAccessCmd) - agentCmd.AddCommand(agentShareCmd) agentCmd.AddCommand(agentReleaseCmd) rootCmd.AddCommand(adminCmd) rootCmd.AddCommand(configCmd) @@ -84,22 +82,12 @@ var adminUpdateCmd = &cobra.Command{ Short: "Update global resources", } -var agentAccessCmd = &cobra.Command{ - Use: "access", - Short: "zrok Agent access commands", -} - var agentCmd = &cobra.Command{ Use: "agent", Short: "zrok Agent commands", Aliases: []string{"daemon"}, } -var agentShareCmd = &cobra.Command{ - Use: "share", - Short: "zrok Agent sharing commands", -} - var agentReleaseCmd = &cobra.Command{ Use: "release", Short: "zrok Agent release commands",