crb_routine/
lib.rs

1
2
3
4
5
6
7
8
9
pub mod finalizer;
pub mod routine;
pub mod runtime;

pub mod kit {
    pub use crate::finalizer::Finalizer;
    pub use crate::routine::{Routine, TaskError};
    pub use crate::runtime::{RoutineContext, RoutineRuntime, RoutineSession, Standalone};
}