Implemented the Create subcommand #5

Merged
javier merged 6 commits from feature/project-management into main 2025-02-18 23:03:52 +00:00
Showing only changes of commit d548cf4e6c - Show all commits

View File

@ -7,7 +7,10 @@ struct Colibri: AsyncParsableCommand {
static let configuration = CommandConfiguration(
abstract: "The utility to manage your Hummingbird apps",
subcommands: [Create.self]
subcommands: [
Build.self,
Create.self
],
)
}