Moved the source files under the "CLI" folder in the executable target.

This commit is contained in:
2025-01-16 00:31:53 +01:00
parent 489cf3d780
commit 7cd1777735
3 changed files with 2 additions and 1 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) }
}
}
}