Files
bun.sh/src/which_npm_client.zig
taylor.fish 07cd45deae Refactor Zig imports and file structure (part 1) (#21270)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2025-07-22 17:51:38 -07:00

13 lines
170 B
Zig

pub const NPMClient = struct {
bin: string,
tag: Tag,
pub const Tag = enum {
bun,
};
};
const string = []const u8;
const bun = @import("bun");