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) +}