blob: eec924d8d250f142179a0b5e9a850c721a5f12e2 (
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 RemoveCommand = struct {
pub fn exec(ctx: Command.Context) !void {
try PackageManager.remove(ctx);
}
};
|