14 lines
264 B
Swift
14 lines
264 B
Swift
import ArgumentParser
|
|
|
|
@main
|
|
struct Colibri: AsyncParsableCommand {
|
|
|
|
// MARK: Properties
|
|
|
|
static let configuration = CommandConfiguration(
|
|
abstract: "The utility to manage your Hummingbird apps",
|
|
subcommands: [Create.self]
|
|
)
|
|
|
|
}
|