flawless_utils/lib.rs
1//! A set of utilities that help you integrate native Rust projects with Flawless workflows.
2//!
3//! Check out the docs at https://flawless.dev/docs/integration-with-rust
4
5mod build;
6mod module;
7mod server;
8mod workflow;
9
10pub use build::{build_debug, build_release};
11pub use server::DeployedModule;
12pub use server::Server;
13pub use workflow::WorkflowRef;