Files
letro-ios/Tools/Sources/Extensions/URL.swift
2026-01-27 12:50:57 +02:00

17 lines
383 B
Swift

import ArgumentParser
import Foundation
extension URL {
static var projectDirectory: URL {
URL(fileURLWithPath: FileManager.default.currentDirectoryPath)
}
static var parentDirectory: URL {
.projectDirectory.deletingLastPathComponent()
}
static var sdkDirectory: URL {
.parentDirectory.appendingPathComponent("matrix-rust-sdk")
}
}