Initalier Commit

This commit is contained in:
2026-04-19 19:55:22 +02:00
commit 93e2c811b6
10 changed files with 318 additions and 0 deletions

12
Linkster/SongResult.swift Normal file
View File

@@ -0,0 +1,12 @@
import Foundation
struct SongResult {
let title: String
let artist: String
let playlistName: String
let providers: [String: String]
func url(for service: StreamingService) -> URL? {
providers[service.rawValue].flatMap { URL(string: $0) }
}
}