mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
11 lines
222 B
Zig
11 lines
222 B
Zig
const std = @import("std");
|
|
usingnamespace @import("flags.zig");
|
|
|
|
pub const FS = comptime {
|
|
if (isWASM) {
|
|
return @import("fs_impl_wasm.zig");
|
|
} else {
|
|
return @import("fs_impl_native.zig");
|
|
}
|
|
};
|