aion_package/declared_command/
mod.rs1mod compat;
6mod contract;
7mod error;
8mod identity;
9mod prior;
10mod template;
11
12pub(crate) use identity::encode as encode_identity;
13pub(crate) use prior::{PriorCommandIdentities, prior_command_identities};
14
15#[cfg(test)]
16mod tests;
17
18pub use contract::{
19 ArgvSlot, CommandLineContract, CommandParameterContract, DeclaredCommandContract,
20 END_OF_OPTIONS_MARKER, EnvBindingContract, RenderedCommand,
21};
22pub use error::{RenderError, shape_word};
23pub use template::{ArgumentValue, FillPiece, FillTemplate};