e-clients 0.1.8

a rust services link upload: ftp、local、ssh、smb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # client
//!
//! Smb fs client

// -- unix client

#[cfg(target_family = "unix")]
mod unix;
#[cfg(target_family = "unix")]
pub use unix::*;

// -- windows client

#[cfg(target_family = "windows")]
mod windows;
#[cfg(target_family = "windows")]
pub use windows::*;