diff options
Diffstat (limited to 'crates/client/src/common.rs')
| -rw-r--r-- | crates/client/src/common.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crates/client/src/common.rs b/crates/client/src/common.rs new file mode 100644 index 0000000..3599211 --- /dev/null +++ b/crates/client/src/common.rs @@ -0,0 +1,8 @@ +#[cfg(target_arch = "wasm32")] +pub mod client; + +#[cfg(not(target_arch = "wasm32"))] +pub mod overlay; + +#[cfg(not(target_arch = "wasm32"))] +pub mod server; |
