chore: init

This commit is contained in:
Mathis Maquenne
2024-10-07 23:06:14 +02:00
commit 4f82007a49
5 changed files with 50 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package cmd
import "github.com/spf13/cobra"
var downloadCmd = &cobra.Command{
Use: "download [ID]",
Short: "Download a track from Deezer",
Run: func(cmd *cobra.Command, args []string) {
// Your code here
},
}
func init() {
RootCmd.AddCommand(downloadCmd)
}