Implemented the Create subcommand #5

Merged
javier merged 6 commits from feature/project-management into main 2025-02-18 23:03:52 +00:00
Showing only changes of commit 5e35f12bb3 - Show all commits

View File

@ -0,0 +1,21 @@
import Foundation
public protocol Locationable {
// MARK: Properties
var location: String? { get set }
}
// MARK: - Locationable+Properties
public extension Locationable {
// MARK: Properties
var locationURL: URL? {
location.flatMap { URL(fileURLWithPath: $0) }
}
}