mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
14 lines
273 B
Zig
14 lines
273 B
Zig
pub const FetchRedirect = enum(u8) {
|
|
follow,
|
|
manual,
|
|
@"error",
|
|
|
|
pub const Map = bun.ComptimeStringMap(FetchRedirect, .{
|
|
.{ "follow", .follow },
|
|
.{ "manual", .manual },
|
|
.{ "error", .@"error" },
|
|
});
|
|
};
|
|
|
|
const bun = @import("bun");
|