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