fetchlib 0.0.13

A lib for remote server connection through ssh
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod fs;
pub mod interact;

pub struct Sftp {
    sftp: ssh2::Sftp,
}

impl From<ssh2::Sftp> for Sftp {
    fn from(value: ssh2::Sftp) -> Self {
        Self { sftp: value }
    }
}