flawless-utils 1.0.0-beta.2

Utility tools for integrating flawless workflows into Rust projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! A set of utilities that help you integrate native Rust projects with Flawless workflows.
//!
//! Check out the docs at https://flawless.dev/docs/integration-with-rust

mod build;
mod module;
mod server;
mod workflow;

pub use build::build;
pub use server::DeployedModule;
pub use server::Server;
pub use workflow::WorkflowRef;