aboutsummaryrefslogtreecommitdiff
path: root/src/cli/link_command.zig
blob: 2dca9799913582e35f319ae318e15af5073321c4 (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 LinkCommand = struct {
    pub fn exec(ctx: Command.Context) !void {
        try PackageManager.link(ctx);
    }
};