2025-01-27 23:38:34 +00:00
|
|
|
import ArgumentParser
|
|
|
|
|
|
|
|
@main
|
|
|
|
struct Colibri: AsyncParsableCommand {
|
|
|
|
|
2025-01-27 23:54:50 +00:00
|
|
|
// MARK: Properties
|
|
|
|
|
|
|
|
static let configuration = CommandConfiguration(
|
|
|
|
abstract: "The utility to manage your Hummingbird apps",
|
2025-02-18 23:03:51 +00:00
|
|
|
subcommands: [
|
|
|
|
Build.self,
|
2025-02-19 01:02:32 +00:00
|
|
|
Clean.self,
|
2025-02-18 23:50:54 +00:00
|
|
|
Create.self,
|
2025-02-19 23:27:21 +00:00
|
|
|
Open.self,
|
2025-02-19 00:14:00 +00:00
|
|
|
Outdated.self,
|
|
|
|
Update.self
|
2025-02-18 23:03:51 +00:00
|
|
|
],
|
|
|
|
defaultSubcommand: Create.self
|
2025-01-27 23:54:50 +00:00
|
|
|
)
|
2025-01-27 23:38:34 +00:00
|
|
|
|
|
|
|
}
|