Files
bun.sh/src/http/FetchRedirect.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");