astro_run/
lib.rs

1mod actions;
2mod astro_run;
3mod execution_context;
4mod plugins;
5mod runner;
6mod signals;
7mod stream;
8mod types;
9mod user_config;
10mod workflow;
11
12pub use crate::astro_run::*;
13pub use actions::*;
14pub use execution_context::*;
15pub use plugins::*;
16pub use runner::*;
17pub use signals::*;
18pub use stream::*;
19pub use types::*;
20pub use user_config::*;
21pub use workflow::*;
22
23pub use async_trait::async_trait;
24
25pub mod typetag {
26  pub use typetag::*;
27}
28
29pub type Result<T> = std::result::Result<T, Error>;