16 lines
374 B
Swift
16 lines
374 B
Swift
import ArgumentParser
|
|
import Dependencies
|
|
import Rainbow
|
|
import ShellClient
|
|
|
|
@main
|
|
struct Application: AsyncParsableCommand {
|
|
|
|
static let configuration = CommandConfiguration(
|
|
commandName: "hpa",
|
|
abstract: "A utility for working with ansible hpa playbook.",
|
|
subcommands: [BuildCommand.self, CreateProjectCommand.self, CreateProjectTemplateCommand.self]
|
|
)
|
|
|
|
}
|