Skip to main content

fond_core/
lib.rs

1//! Shared business logic and services for fond.
2//!
3//! This crate contains pure application logic — orchestration,
4//! validation, and transformations — with no I/O. Storage and
5//! network access are provided via trait implementations in
6//! downstream crates.
7
8pub use fond_domain::*;