Root folder creation #2

Merged
javier merged 21 commits from feature/create-project-root into main 2025-01-27 23:54:51 +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)
}
}
}