partial fetching of artist

This commit is contained in:
Hazel Noack
2025-10-09 14:37:13 +02:00
parent 1ae859b9b9
commit 3565f14181
3 changed files with 281 additions and 3 deletions

View File

@@ -28,3 +28,7 @@ var numericRegex = regexp.MustCompile(`^[\d]+$`)
func IsNumeric(num string) bool {
return numericRegex.MatchString(num)
}
func CleanSongTitle(title string, artistName string) string {
return title
}