mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
11 lines
167 B
Swift
11 lines
167 B
Swift
import Foundation
|
|
import PathKit
|
|
import SwiftCLI
|
|
|
|
extension Path: SwiftCLI.ConvertibleFromString {
|
|
|
|
public init?(input: String) {
|
|
self.init(input)
|
|
}
|
|
}
|