Formatting

This commit is contained in:
Matt Low 2023-11-05 06:55:38 +00:00
parent b46bbef80b
commit bb895460ad
1 changed files with 4 additions and 1 deletions

View File

@ -131,6 +131,9 @@ var promptCmd = &cobra.Command{
} }
func NewRootCmd() *cobra.Command { func NewRootCmd() *cobra.Command {
rootCmd.AddCommand(newCmd, promptCmd) rootCmd.AddCommand(
newCmd,
promptCmd,
)
return rootCmd return rootCmd
} }