Skip to main content

shadowforge_lib/domain/
mod.rs

1//! Domain layer — pure business logic, no I/O.
2//!
3//! Sub-modules are bounded contexts. All share the canonical type
4//! vocabulary defined in [`types`].
5
6pub mod adaptive;
7pub mod analysis;
8pub mod archive;
9pub mod canary;
10pub mod corpus;
11pub mod correction;
12pub mod crypto;
13pub mod deadrop;
14pub mod deniable;
15pub mod distribution;
16pub mod errors;
17pub mod media;
18pub mod opsec;
19pub mod pdf;
20pub mod ports;
21pub mod reconstruction;
22pub mod scrubber;
23pub mod stego;
24pub mod timelock;
25pub mod types;