vantage_cmd/vista/mod.rs
1//! Vista integration for `vantage-cmd`: the YAML-facing spec types, the
2//! factory (typed-table *and* YAML construction), and the `TableShell`.
3
4pub mod factory;
5pub mod source;
6pub mod spec;
7
8pub use factory::CmdVistaFactory;
9pub use spec::{CmdBlock, CmdColumnExtras, CmdTableExtras, CmdVistaSpec};