Basic project creation #3

Merged
javier merged 64 commits from feature/create-basic-project into main 2025-01-28 00:07:25 +00:00
Showing only changes of commit 739fe0c8de - Show all commits

View File

@ -0,0 +1,15 @@
import Foundation
extension URL {
// MARK: Initialisers
init(at filePath: String) {
if #available(macOS 13.0, *) {
self = URL(filePath: filePath)
} else {
self = URL(fileURLWithPath: filePath)
}
}
}