//! # Molten Service
//!
//! `molten-service` provides the application orchestration layer for the Molten Document and
//! Workflow Management system. This crate coordinates between documents, workflows, and storage
//! to enforce business rules and manage the document lifecycle.
//!
//! This crate is under active development and is not yet stable.
//! If this crate has been abandoned, please message me and we can discuss ownership transfer.
/// Re-exports of the service error types.
pub use ServiceError;
/// Re-exports of the Document service.
pub use DocumentService;
/// Re-exports of the Form service.
pub use FormService;
/// Re-exports of the Workflow service.
pub use WorkflowService;