feat: download implementation

This commit is contained in:
2026-02-19 13:18:47 +01:00
parent f79836b11e
commit 1026868e01
4 changed files with 112 additions and 38 deletions

View File

@@ -41,7 +41,8 @@ func main() {
},
Action: func(ctx context.Context, cmd *cli.Command) error {
song_url := cmd.Args().First()
err := app.Download(song_url, outputFolder, service)
quality := "LOSSLESS"
err := app.Download(song_url, outputFolder, service, quality)
return err
},
},