Written the help definitions for the App.Options arguments in the app target.
This commit is contained in:
parent
5f60d0f421
commit
e84606fa1e
@ -7,13 +7,22 @@ extension App {
|
|||||||
|
|
||||||
// MARK: Properties
|
// MARK: Properties
|
||||||
|
|
||||||
@Option(name: .shortAndLong)
|
@Option(
|
||||||
|
name: .shortAndLong,
|
||||||
|
help: "A hostname to bind the application to. Defaults to `127.0.0.1`."
|
||||||
|
)
|
||||||
var hostname: String = "127.0.0.1"
|
var hostname: String = "127.0.0.1"
|
||||||
|
|
||||||
@Option(name: .shortAndLong)
|
@Option(
|
||||||
|
name: .shortAndLong,
|
||||||
|
help: "A log level to set the logger service in the application."
|
||||||
|
)
|
||||||
var logLevel: Logger.Level?
|
var logLevel: Logger.Level?
|
||||||
|
|
||||||
@Option(name: .shortAndLong)
|
@Option(
|
||||||
|
name: .shortAndLong,
|
||||||
|
help: "A port number to bind the application to. Defaults to `8080`."
|
||||||
|
)
|
||||||
var port: Int = 8080
|
var port: Int = 8080
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user