sftpman 2.0.6

A CLI application and library for managing and mounting sshfs (SFTP) filesystems
Documentation
mod auth_type;

#[cfg(feature = "cli")]
pub mod cli;

mod errors;
mod manager;
mod model;
mod utils;

pub use auth_type::AuthType;
pub use errors::{ManagerInitError, PreflightCheckError, SftpManError};
pub use manager::Manager;
pub use model::{DEFAULT_MOUNT_PATH_PREFIX, FilesystemMountDefinition, MountState};

pub const VERSION: &str = env!("CARGO_PKG_VERSION");

// Re-exports

// Re-export to allow people to use `FilesystemMountDefinition::validate()` (which requires the `validator::Validate` trait)
pub use validator;