barley-std

This crate contains the standard library for the barley workflow engine. It provides a set of common actions that can be used in any script.

Usage

```rust use barleyruntime::prelude::*; use barleystd::thread::Sleep; use std::time::Duration;

[tokio::main]

async fn main() -> Result<(), ActionError> { let sleep1 = Sleep::new(Duration::fromsecs(1)); let sleep2 = Sleep::new(Duration::fromsecs(2));

RuntimeBuilder::new() .addaction(sleep1) .addaction(sleep2) .build() .run() .await } ```