colibri/Sources/Executable/Colibri.swift

14 lines
268 B
Swift

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