18 lines
410 B
Swift
18 lines
410 B
Swift
import ArgumentParser
|
|
import Dependencies
|
|
import Rainbow
|
|
import ShellClient
|
|
|
|
@main
|
|
struct Application: AsyncParsableCommand {
|
|
|
|
static let configuration = CommandConfiguration(
|
|
commandName: Constants.appName,
|
|
abstract: createAbstract("A utility for working with ansible hpa playbook."),
|
|
subcommands: [
|
|
BuildCommand.self, CreateCommand.self, VaultCommand.self, UtilsCommand.self
|
|
]
|
|
)
|
|
|
|
}
|