feat: add web subcommand

This commit is contained in:
Arik Jones (aider)
2024-09-03 10:55:15 -05:00
parent c2be1b57c0
commit baf92acfd2

18
cmd/web.go Normal file
View File

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