Restructure Osiris: separate core, client, and server crates to avoid circular dependencies

This commit is contained in:
Timur Gordon
2025-11-04 13:08:43 +01:00
parent ae846ea734
commit 5d82959457
86 changed files with 601 additions and 62 deletions

View File

@@ -0,0 +1,7 @@
/// Legal module for contracts and legal documents
pub mod contract;
pub mod rhai;
pub use contract::{Contract, ContractStatus};
pub use rhai::register_legal_modules;