blob: 6c441b859d076e4843c7f1ae154d826f07ad9ee3 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
 | const Command = @import("../cli.zig").Command;
const PackageManager = @import("../install/install.zig").PackageManager;
pub const InstallCommand = struct {
    pub fn exec(ctx: Command.Context) !void {
        try PackageManager.install(ctx);
    }
};
 |