diff options
| author | LLLL Colonq <llll@colonq> | 2025-01-22 09:26:41 -0500 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2025-01-22 09:26:41 -0500 |
| commit | f448de77d84b985047a332150c0382adc1836899 (patch) | |
| tree | 3003bfa2f8a74e08986ee6c0de7ad52edceb8302 /src/newton.rs | |
Initial commit
Diffstat (limited to 'src/newton.rs')
| -rw-r--r-- | src/newton.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/newton.rs b/src/newton.rs new file mode 100644 index 0000000..3599211 --- /dev/null +++ b/src/newton.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; |
