Skip to main content

aion_worker/shell/
mod.rs

1//! Declared commands as activities — an action that runs without a Rust crate.
2
3pub mod action;
4pub mod declared;
5pub mod registry;
6pub mod template;
7pub mod workspace;
8
9pub use action::{FailureMode, ShellAction, ShellOutcome};
10pub use declared::{DeclaredCommandAction, shape_command_result};
11pub use registry::{DeclaredArguments, DeclaredCommands};
12pub use template::{CommandTemplate, SubstitutionError, TemplateError};
13pub use workspace::{WorkingDirectoryError, needs_workspace_root, resolve_working_directory};