17 lines
299 B
Swift
17 lines
299 B
Swift
import ArgumentParser
|
|
import CliDoc
|
|
|
|
@main
|
|
struct Application: ParsableCommand {
|
|
static var configuration: CommandConfiguration {
|
|
.init(
|
|
commandName: "examples",
|
|
subcommands: [
|
|
SectionCommand.self,
|
|
VStackCommand.self,
|
|
HStackCommand.self
|
|
]
|
|
)
|
|
}
|
|
}
|