taskflow-rs 0.1.1

A high-performance, async-first task orchestration framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod file;
pub mod http;
pub mod notification;
pub mod python;
pub mod shell;

pub use file::FileTaskHandler;
pub use http::HttpTaskHandler;
pub use notification::NotificationTaskHandler;
pub use python::PythonTaskHandler;
pub use shell::ShellTaskHandler;