22 lines
327 B
Go
22 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)
|
||
|
}
|