mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
9 lines
251 B
Zig
9 lines
251 B
Zig
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);
|
|
}
|
|
};
|