pretty shell

This commit is contained in:
Hazel Noack
2025-10-08 13:19:30 +02:00
parent 043f5e9b55
commit 3dd03491ca
2 changed files with 17 additions and 0 deletions

View File

@@ -49,6 +49,10 @@ func printResults(musicObjects []data.MusicObject) {
results[i] += " - " + artist.Name
}
}
for _, source := range m.GetSources() {
results[i] += "\n\t- " + source.Url
}
}
fmt.Println(strings.Join(results, "\n"))