tachyon-types 0.7.3

Shared myko entity and command types for the tachyon Ansible runner.
Documentation
/// The tachyon-types crate version — the runner<->cell wire-contract version.
/// Deployers (pulse-deploy's tachyon_runner role) assert a runner binary's
/// reported VERSION matches the cell's pinned tachyon-types before installing.
pub const VERSION: &str = env!("CARGO_PKG_VERSION");

pub mod category;
pub use category::*;

pub mod inventory;
pub use inventory::*;

pub mod output;
pub use output::*;

pub mod playbook;
pub use playbook::*;


pub mod pin;
pub use pin::*;

pub mod run;
pub use run::*;

pub mod resource;
pub use resource::*;

pub mod commands;
pub use commands::*;