Added some more cases to the File enumeration in the library target.

This commit is contained in:
2025-01-18 13:32:59 +01:00
parent 0b69973537
commit c08dbe5602
12 changed files with 258 additions and 16 deletions
@@ -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 port: Int = 8080
@Option(name: .shortAndLong)
var logLevel: Logger.Level?
}
}