blob: 312d671718b3648e6991d9063d6ce64762b49e9e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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");
}
};
|