Defined the AppArguments protocol in the sample target and also, conformed the SampleAppArguments type to it.

This commit is contained in:
2025-09-28 22:19:42 +02:00
parent 41e26310a7
commit 90c4033a49
4 changed files with 52 additions and 6 deletions
@@ -13,25 +13,31 @@
import protocol ArgumentParser.ParsableArguments
import struct ArgumentParser.Option
import struct Logging.Logger
extension SampleApp {
/// A type that conforms to the `ParsableArguments` protocol, which contains the input parameters required for the execution of the sample executable.
struct Parameters: ParsableArguments {
/// A type that conforms to the ``AppArguments`` and the `ParsableArguments` protocols, which contains the input parameters required for the
/// execution of the sample executable.
struct Arguments: AppArguments, ParsableArguments {
// MARK: Properties
/// A label given to the sample app to identify it within a communications channel.
@Option(
name: .shortAndLong,
help: "A label given to the sample app for the sole purpose of identification within a communications channel."
)
var hostname: String = "127.0.0.1"
/// A port number assigned to the sample app from where the app either sends or receives data.
@Option(
name: .shortAndLong,
help: "A port number assigned to the sample app from where the app either sends or receives data."
)
var port: Int = 8080
@Option(
name: .long,
help: "A log level to configure in a type that interacts with the logging system."
)
var logLevel: Logger.Level?
}
}