yao 0.1.4

a fast, tiny, extensiable workflow engine
Documentation
// #[macro_export]
// macro_rules! debug {
//   ($($arg:tt)*) => {
//     #[cfg(feature = "debug")]
//     println!($($arg)*);
//   };
// }

mod convert;
mod id;
pub(crate) mod log;
mod macros;
pub(crate) mod time;
pub(crate) mod vars;

pub use convert::*;
pub use id::*;

use crate::options::Options;

pub fn default_config() -> Options {
    Options {
        cache_cap: 100,
        scher_cap: 20,
    }
}