From baf92acfd2af575df132cf9c7202513ad16e981f Mon Sep 17 00:00:00 2001 From: "Arik Jones (aider)" Date: Tue, 3 Sep 2024 10:55:15 -0500 Subject: [PATCH] feat: add web subcommand --- cmd/web.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cmd/web.go diff --git a/cmd/web.go b/cmd/web.go new file mode 100644 index 0000000..d576b18 --- /dev/null +++ b/cmd/web.go @@ -0,0 +1,18 @@ +package cmd + +import ( + "github.com/spf13/cobra" +) + +var webCmd = &cobra.Command{ + Use: "web", + Short: "Web-related commands", + Long: `This command is for web-related operations.`, + Run: func(cmd *cobra.Command, args []string) { + // This is left empty intentionally + }, +} + +func init() { + rootCmd.AddCommand(webCmd) +}