Define the "archivesFolder" property for the AppBuilder builder used to be build the app in the app target.

This commit is contained in:
2025-03-09 14:42:35 +01:00
parent 7929f55c22
commit a3c5cefaef
2 changed files with 6 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
import AppLibrary
import ArgumentParser
import Logging
extension App {
struct Options: AppArguments, ParsableArguments {
// MARK: Properties
@Option(name: .shortAndLong)
var hostname: String = "127.0.0.1"
@Option(name: .shortAndLong)
var logLevel: Logger.Level?
@Option(name: .shortAndLong)
var port: Int = 8080
}
}