diff options
author | metamuffin <metamuffin@disroot.org> | 2025-10-06 23:03:32 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-10-06 23:03:40 +0200 |
commit | 176e6bc6c4c29bea3be2aceca99743b997c76c97 (patch) | |
tree | 1161e7a966843324756340da4b6452492902fa07 /server/src/lib.rs | |
parent | ea86b11b682500160f37b35ea8f06b081cd05036 (diff) | |
download | hurrycurry-176e6bc6c4c29bea3be2aceca99743b997c76c97.tar hurrycurry-176e6bc6c4c29bea3be2aceca99743b997c76c97.tar.bz2 hurrycurry-176e6bc6c4c29bea3be2aceca99743b997c76c97.tar.zst |
Move data code to own crate + general data refactor
Diffstat (limited to 'server/src/lib.rs')
-rw-r--r-- | server/src/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/server/src/lib.rs b/server/src/lib.rs index 3e01ba36..da49f85d 100644 --- a/server/src/lib.rs +++ b/server/src/lib.rs @@ -17,7 +17,6 @@ */ #![feature(if_let_guard, let_chains, iterator_try_collect, stmt_expr_attributes)] pub mod commands; -pub mod data; pub mod entity; pub mod interaction; pub mod network; |