chore(cli): update descriptions

This commit is contained in:
Mathis Maquenne
2025-05-19 16:41:08 +02:00
parent 56e3e894ab
commit 5951e13abe
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ func init() {
func newDownloadCmd(resourceType string) *cobra.Command {
cmd := &cobra.Command{
Use: fmt.Sprintf("%s <id>", resourceType),
Use: fmt.Sprintf("%s <%s_id>", resourceType, resourceType),
Short: fmt.Sprintf("Download songs from %s", resourceType),
Args: cobra.ExactArgs(1),
PreRunE: func(cmd *cobra.Command, args []string) error {
+1 -1
View File
@@ -23,5 +23,5 @@ var RootCmd = &cobra.Command{
}
func init() {
RootCmd.PersistentFlags().StringVar(&cfgPath, "config", "", "config file (default $HOME/.godeez)")
RootCmd.PersistentFlags().StringVar(&cfgPath, "config", "", "config file (default ~/.godeez/config.toml)")
}