Refactored into multiple modules

This commit is contained in:
Dave
2025-06-12 15:49:04 -04:00
parent 7878bb9149
commit e2d50144ca
6 changed files with 410 additions and 393 deletions

View File

@@ -0,0 +1,5 @@
mod network_crdt;
mod node;
pub(crate) use network_crdt::OracleNetworkCRDT;
pub(crate) use node::OracleNode as Node;