Skip to main content

evault_core/service/
mod.rs

1//! High-level services composed on top of the [`crate::traits`] contracts.
2//!
3//! Services route a single user-facing operation across the storage and
4//! infrastructure traits. They contain the business rules (which storage
5//! tier holds the value, when to emit audit entries, validation order) and
6//! are themselves stateless beyond their trait dependencies.
7
8mod registry;
9
10pub use registry::RegistryService;