Files
swift-cli-doc/Examples/Sources/CliDoc-Examples/CliDoc_Examples.swift
Michael Housh 78a632c3e5
All checks were successful
CI / Run tests. (push) Successful in 52s
feat: Adds more documentation and examples.
2024-12-08 18:27:31 -05:00

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
]
)
}
}