15 lines
316 B
Swift
15 lines
316 B
Swift
import ArgumentParser
|
|
|
|
struct GenerateCommand: AsyncParsableCommand {
|
|
static let commandName = "generate"
|
|
|
|
static let configuration = CommandConfiguration(
|
|
commandName: commandName,
|
|
subcommands: [
|
|
GeneratePdfCommand.self,
|
|
GenerateLatexCommand.self,
|
|
GenerateHtmlCommand.self
|
|
]
|
|
)
|
|
}
|