intake/cmd/item.go

17 lines
212 B
Go
Raw Permalink Normal View History

2025-01-21 16:42:59 +00:00
package cmd
import (
"github.com/spf13/cobra"
)
var itemCmd = &cobra.Command{
Use: "item",
Short: "Manage items",
Long: `Add, edit, or deactivate items.
`,
}
func init() {
rootCmd.AddCommand(itemCmd)
}