Restructured the folder structure of the executable target.

This commit is contained in:
2025-01-17 23:19:01 +01:00
parent 94e28a324b
commit 6955d816ef
4 changed files with 5 additions and 5 deletions
@@ -0,0 +1,22 @@
import ArgumentParser
import Foundation
extension Colibri.Create {
struct Options: ParsableArguments {
// MARK: Properties
@Option(name: .shortAndLong)
var name: String
@Option(name: .shortAndLong)
var location: String?
// MARK: Computed
var locationURL: URL? {
location.flatMap { URL(fileURLWithPath: $0) }
}
}
}