move repos into monorepo

This commit is contained in:
Timur Gordon
2025-11-13 20:44:00 +01:00
commit 4b23e5eb7f
204 changed files with 33737 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
pub mod accounting;
pub mod communication;
pub mod event;
pub mod flow;
pub mod grid4;
pub mod heroledger;
pub mod kyc;
pub mod legal;
pub mod money;
pub mod note;
pub mod supervisor;
pub use note::Note;
pub use event::Event;
pub use kyc::{KycInfo, KycSession};
pub use flow::{FlowTemplate, FlowInstance};
pub use communication::{Verification, EmailClient};
pub use money::{Account, Asset, Transaction, PaymentClient};
pub use legal::{Contract, ContractStatus};