A library for writing host-specific, single-binary configuration management and deployment tools
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
314 B

4 years ago
  1. mod core;
  2. mod util;
  3. pub use util::{AddResult, AddableResource};
  4. mod symbol_runner;
  5. pub use symbol_runner::{
  6. DelayingSymbolRunner, DrySymbolRunner, InitializingSymbolRunner, ReportingSymbolRunner,
  7. SymbolRunner,
  8. };
  9. mod runnable;
  10. #[allow(clippy::module_inception)]
  11. mod setup;
  12. pub use setup::SetupFacade as Setup;