feat: Migrated deps command.

This commit is contained in:
2026-04-20 17:26:21 -04:00
parent 8a503cedfb
commit bd2a5455af
2 changed files with 84 additions and 3 deletions

View File

@@ -7,7 +7,16 @@ const Command = comma.Command;
pub const root: Command = .new(.{
.name = "envr",
.subcommands = &.{.{ .name = "version" }},
.subcommands = &.{
.{
.name = "deps",
.short = "Check for missing binaries",
.long = \\envr relies on external binaries for certain functionality.
\\
\\ The deps command reports which binaries are available and which are not.",
},
.{ .name = "version" },
},
});
test "enum type" {