mlua_swarm/service.rs
1//! Domain-service layer.
2//!
3//! Extracts the domain operations that `Application`s share into
4//! `Service`s. Sits one layer above the direct engine API and one
5//! layer below `Application`.
6
7pub mod linker;
8pub mod task_launch;
9
10pub use linker::link;
11pub use task_launch::{
12 merge_init_ctx_3layer, TaskInputSpec, TaskLaunchError, TaskLaunchInput, TaskLaunchOutput,
13 TaskLaunchService,
14};