colibri/Sources/Executable/Colibri.swift

14 lines
264 B
Swift
Raw Normal View History

2025-01-09 09:56:47 +01:00
import ArgumentParser
@main
struct Colibri: AsyncParsableCommand {
// MARK: Properties
static let configuration = CommandConfiguration(
abstract: "The utility to manage your Hummingbird apps",
subcommands: [Create.self]
)
2025-01-09 09:56:47 +01:00
}