mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 13:37:11 +00:00
9 lines
345 B
Swift
9 lines
345 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") }
|
||
|
}
|