bronzeflow-core 0.1.1

Core of bronzeflow
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(associated_type_defaults)]
#[macro_use]
extern crate derive_builder;

pub mod executor;
pub mod manager;
pub mod prelude;
pub mod session;
pub mod store;

pub(crate) mod service;

mod bronze_async;
pub mod runtime;
pub mod task;
pub mod trigger;