panel/cmd/generate.go
2024-11-03 15:33:08 -05:00

21 lines
327 B
Go

//go:build dev
/*
Package cmd
Copyright © 2024 Shane C. <shane@scaffoe.com>
*/
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)
}