package commands import ( "github.com/spf13/cobra" ) func NewAddCmd() *cobra.Command { cmd := &cobra.Command{ Use: "add", Short: "Add new entities to the database", Long: "Add new clients, projects, or other entities to the punchcard database.", } cmd.AddCommand(NewAddClientCmd()) cmd.AddCommand(NewAddProjectCmd()) return cmd }