Files
rollup/cmd/web.go
2024-09-03 10:55:15 -05:00

19 lines
319 B
Go

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