ffsend_api/lib.rs
1#[macro_use]
2extern crate arrayref;
3#[macro_use]
4extern crate derive_builder;
5pub extern crate reqwest;
6#[macro_use]
7extern crate serde_derive;
8pub extern crate url;
9#[cfg(feature = "send3")]
10extern crate websocket;
11
12pub mod action;
13pub mod api;
14pub mod client;
15pub mod config;
16pub mod crypto;
17mod ext;
18pub mod file;
19#[cfg(feature = "send3")]
20mod io;
21pub mod pipe;