libwisp/lib.rs
1#![allow(non_snake_case)]
2#![allow(unused_imports)]
3// ^^ for some reason,
4// client.rs throws
5// warning about unused
6// imports but when i remove
7// them it complains about not
8// having said imports :/
9
10pub mod types;
11pub mod client;
12pub mod http;
13
14pub use types::{WispContext, ConnectionType};
15pub use client::{WispSetServer, WispGetServer, WispSetConnectionType, WispGetConnectionType, WispSwitchServer, WispClose};
16pub use http::{WispHTTPRequest, WispHTTPResponse};