shellm/src/data/mod.rs

13 lines
302 B
Rust

//! Data model module for shellm.
pub mod config;
pub mod history;
pub mod paths;
pub mod profile;
pub mod protection;
pub mod terminal;
pub use config::{Configs, SftpClient, SshImpl};
pub use profile::{Algo, Forward, IpVer, KeyType, Profile, SshVer};
pub use terminal::{TerminalKind, TerminalSpec};