//go:build dev /* Package cmd Copyright © 2024 Shane C. */ package cmd import ( "github.com/spf13/cobra" ) // generateCmd represents the generate command var generateCmd = &cobra.Command{ Use: "generate", Short: "Generates things for the panel", } func init() { rootCmd.AddCommand(generateCmd) }