Skip to content

Instantly share code, notes, and snippets.

@ducmeit1
Created July 18, 2019 16:58
Show Gist options
  • Save ducmeit1/6ae360ba376f87c610bac343318452c0 to your computer and use it in GitHub Desktop.
Save ducmeit1/6ae360ba376f87c610bac343318452c0 to your computer and use it in GitHub Desktop.
package cmd
import (
"fmt"
"github.com/spf13/cobra"
"os"
)
var rootCmd = &cobra.Command{
Use: "zmp3",
Short: "A simple CLI for Golang use to download Song/Video from Zing Mp3",
Long: "A simple CLI for Golang use to download Song/Video from Zing Mp3",
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},
}
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment