Files
swift-cli-doc/Examples/Sources/CliDoc-Examples/CliDoc_Examples.swift
Michael Housh 875b1980e0
All checks were successful
CI / Run tests. (push) Successful in 58s
feat: Working on documentation
2024-12-09 09:35:17 -05:00

18 lines
326 B
Swift

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