ssh_host/
lib.rs

1//pub mod parse_ssh_config;
2
3//! # ssh_host
4//! 
5//! `ssh_host` is a simple crate holding the nessecary value to connect to a `ssh2` host.
6//!
7//! This crate is created with a maximum compatibility with [ssh2](https://docs.rs/ssh2/0.5.0/ssh2/index.html).
8pub use crate::ssh_host::SshHost;
9
10mod ssh_host;