molten-service 0.0.2

Application orchestration and business logic layer for Molten
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! This module serves as a re-export module for various services within the `molten-service` crate.
//!
//! It provides a consolidated place to access services for Document, Form, and Workflow entities.

pub mod document;
pub mod form;
pub mod workflow;

pub use document::DocumentService;
pub use form::FormService;
pub use workflow::WorkflowService;