mirror of
https://github.com/oven-sh/bun
synced 2026-02-11 03:18:53 +00:00
Co-authored-by: Jarred-Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
12 lines
169 B
Zig
12 lines
169 B
Zig
const bun = @import("bun");
|
|
const string = bun.string;
|
|
|
|
pub const NPMClient = struct {
|
|
bin: string,
|
|
tag: Tag,
|
|
|
|
pub const Tag = enum {
|
|
bun,
|
|
};
|
|
};
|